Hi Everybody,
I have a listview and basic filter function in a user control
But when I change selected in FieldCombo, Button filter and valueBox not show
Are there any proble in Javascrip ? My code as below, please suggest me a way to fix that
Thanks
I have a listview and basic filter function in a user control
But when I change selected in FieldCombo, Button filter and valueBox not show
Are there any proble in Javascrip ? My code as below, please suggest me a way to fix that
Thanks
function fieldComboSelectedIndexChanged(sender, args) { //debugger; if (args.get_item().get_value() == "..") { NoFilterChosen(); } else { $('div[id=boxValueDiv]').show(0); $('div[id=radioButtonDiv]').show(interval, showRemainingControls);
} } function showRemainingControls() { //debugger; $('div[id=buttonsDiv]').fadeIn(interval); } function hideRemainingControls() { //hide all the UI filter data controls $('div[id=boxValueDiv]').fadeOut(interval); $('div[id=buttonsDiv]').fadeOut(interval); }