cancel
Showing results for 
Search instead for 
Did you mean: 

IBrowser - Showing multiple display columns

Former Member
0 Kudos

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

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

HI

You cant display more than 2 columns in iBrowser.

Use iGrid in Place of iBrowser.

Thanks

Anshul

Former Member
0 Kudos

Hi Anshul,

After digging around I have seen this working.

Thanks

Martin

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi Martin,

I also looking for the same kind of a solution.

It would be great help if you share me the process of achieving the same.

regards,

Senthil