cancel
Showing results for 
Search instead for 
Did you mean: 

tab controled table view

Former Member
0 Kudos

Hi all,

I created Table.Iam getting table data fine.In that table displaying Emp,Customer,Vendor data .Iwant to display data different tables by using

tab strip ui element.

If any ody have idea plz help me reg this.

Thanks,

santhosh

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

What exactly is the problem?

Armin

Former Member
0 Kudos

Dear Armin ,

I want to create four tabs.1.all

2.Emp

3.Customer

4.Vendor

I want to display those data in table when click on tab.

I hope now clear to u.

Bye

Thanks,

santhosh

Former Member
0 Kudos

Create a TabStrip, add 4 Tabs, put a Table inside each one, bind the properties of the tables to your context nodes storing the different data.

Do you want to query the table data at the moment the tab is selected? If yes, add TabStrip.onSelect action and call <dataNode>.invalidate() inside action handler. Supply function for <dataNode> should execute the query and fill the node. Here, <dataNode> stands for the node that provides the data for the currently selected tab, e.g. the vendors.

Armin

Former Member
0 Kudos