Hello,
Is there a way to clear filter string after user clicked on search button.
Before Q3, If I am not mistaken, filter string was cleard automatically after serach.
Thanks in advanced,
Robin
Is there a way to clear filter string after user clicked on search button.
Before Q3, If I am not mistaken, filter string was cleard automatically after serach.
protected
void
rsbProducts_ButtonCommand(
object
sender, SearchBoxButtonEventArgs e)
{
if
(e.CommandName ==
"clearfilter"
)
{
// Required to clear current filter text
}
}
Thanks in advanced,
Robin