Skip to Content
0
Former Member
May 08, 2014 at 11:49 AM

How to jump from one chart selection to the next in a tabstrip

276 Views

Hi All

I am using Design Studio1.2 version 12.

I have a requirement in which Tab 1 has customer details and Tab 2 has N/W details.

When the user selects customer1 in Tab 1, it should automatically move to Tab 2 showing the N/W corresponding to Customer1.

Or it should show a pop-up window of the N/W details.

I tried following code in Onstartup event:

CHART_1.onSelect();

if (CHART_CVALUE.onSelect()) {

PANEL_1.setVisible(true);

POPUP_1.show();

} else {

POPUP_1.hide();

}

In Onselect of chart component:

DS_CUST.setFilter("CSO_DOC__0SOLD_TO", CHART_NWVALUE.getSelectedMember("CSO_DOC__0SOLD_TO"));

Am i missing something in the script? Kindly suggest a better option for this.

Regards

Merlin