Hello Kiril,
I created this new thread per your request.
Here is my problem. I have a pageable grid with filter and dropdown.
It works fine until options are saved and restored from SessionStorage. The
reason I use SessionStorage, because my grid has a link to another web page.
When user comes back, I need to know what last grid page was active. So, grid script
has reference to function:
{ field: "ProductName", title:
"Product",
filterable:
{ ui: grid_Filter, messages: { filter: "Search", info: ""}
}
}
But this function (grid_Filter) is missing in string that
returned by getOptions() :
"field":"ProductName","title":"Product","filterable":{"messages":{"filter":"Search","info":""}}
Here is example: http://dojo.telerik.com/AQAVO
When you click on filter sign, you can see dropdown with
data. If you click “Save and Restore” button and then click on filter sign
again, dropdown is gone.
Is it a bug? I am looking for a work around how to set filter
after setOptions.
Thank you.