Setting Tab Values
I have a grid that is filtered by a tab object and two select objects. For example, when the user clicks the tab marked "A" the grid shows only the rows that start with the letter "A". Then the user drags down to "End User" in the select object, it shows only the rows that are end user customers starting with "A". This is all working fine.
The problem is that I want to add a button that will reset the tab and the filters to "All" (the default value). This works fine for the select objects, but when I try to reset the value of the tab, it only changes the display and not the underlying value. After the reset button has been pushed, the tab shows "All", but the grid still acts as if the tab were on "A".
I am using
The problem is that I want to add a button that will reset the tab and the filters to "All" (the default value). This works fine for the select objects, but when I try to reset the value of the tab, it only changes the display and not the underlying value. After the reset button has been pushed, the tab shows "All", but the grid still acts as if the tab were on "A".
I am using
objTab.setSelectedItems([26]);
to set the tab through the button, but I can't seem to set the underlying value. I tried objTab.setItemValue(26,"All");
but this didn't work (I didn't really expect it to). Does anyone have a way to do this?David K
November 7,