Hi all,
Please help!
Is there any way to disable postback at GridFilterMenuItem ?
I already tried as below but it doesn't work.
Even Postback value always show 'False' at runtime my grid still postback when I select FilterMenuItem.
&
Please help!
Is there any way to disable postback at GridFilterMenuItem ?
I already tried as below but it doesn't work.
Even Postback value always show 'False' at runtime my grid still postback when I select FilterMenuItem.
<FilterMenu EnableEmbeddedScripts="True" >
<DataBindings><telerik:RadMenuItemBinding PostBack="false"/> </DataBindings> </FilterMenu >Dim menu As GridFilterMenu = RadGrid1.FilterMenu For Each item As RadMenuItem In menu.Items Dim a As String = item.Text item.PostBack = FalseNext