Hi,
Yes, 1st alert and 2nd alert is working. 3rd and fourth is not working. Here is the code:
function UltraWebGrid1_AfterFilterDroppedDown(gridName, oFilterDropDown)
{
alert(oFilterDropDown.Column.DataType);
if (oFilterDropDown.Column.DataType == 8)
{
alert("Test1");
oFilterDropDown._showListOption( igtbl_filterComparisionOperator.Empty,false);
alert("Test2");
oFilterDropDown._showListOption( igtbl_filterComparisionOperator.NonEmpty,false);
alert("Test3");
}
}
Now what can i do?
/Mamun