on ‎2011 Sep 27 9:23 AM
Hi,
I have an IBrowser in which I would like to display multiple columns from my query. There are 4 in total that I would like to see in a tree format.
I have specified which columns I want to see, however when I execute the IBrowser I am only seeing two columns and not the 4.
Is there something I am not doing correctly.
Thanks
Martin
Request clarification before answering.
HI
You cant display more than 2 columns in iBrowser.
Use iGrid in Place of iBrowser.
Thanks
Anshul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Martin,
Have you tried something like below xml format
<?xml version="1.0" encoding="UTF-8"?>
<Rowsets DateCreated="2007-05-02T07:37:37" EndDate="2007-05-02T16:59:53" StartDate="2007-05-02T16:59:53" Version="11.5.3">
<Rowset>
<Columns>
<Column Description="" MaxRange="1" MinRange="0" Name="Child" SQLDataType="1" SourceColumn=" Child"/>
<Column Description="" MaxRange="1" MinRange="0" Name="Parent" SQLDataType="1" SourceColumn="Parent"/>
</Columns>
<Row>
<Child>Child</Child>
<Parent>Root</Parent>
</Row>
<Row>
<Child>SubChild 1</Child>
<Parent>Child</Parent>
</Row>
<Row>
<Child>10</Child>
<Parent>SubChild 1</Parent>
</Row>
<Row>
<Child>SubChild 2</Child>
<Parent>Child</Parent>
</Row>
<Row>
<Child>20</Child>
<Parent>SubChild 2</Parent>
</Row>
<Row>
<Child>SubChild 3</Child>
<Parent>Child</Parent>
</Row>
<Row>
<Child>Child 1</Child>
<Parent>Root</Parent>
</Row>
<Row>
<Child>SubChild 4</Child>
<Parent>Child 1</Parent>
</Row>
<Row>
<Child>SubChild 5</Child>
<Parent>Child 1</Parent>
</Row>
<Row>
<Child>SubChild 6</Child>
<Parent>Child 1</Parent>
</Row>
</Rowset>
</Rowsets>Regards,
Manoj Bilthare
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.