Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListGrid Dynamic Filtering

    Hi,

    i have a form with two text box and one listgrid which[listgrid] gets populated once the page loaded by using listgridid.filterData() and its working fine.
    The requirement is if the user enters value in the text boxes and give search[In textbox they will enter only relavant to search in listgrid] . the listgrid data should be filtered based on the textbox value.is it possible to filter the fetched data in client side itself or is any other means available.
    Please help us.
    Regards
    ArulKumar.k

    #2
    When your text box changes, pass its value to listGrid.filterData(). If SmartClient is able to filter on the client - either because the entire dataset is already loaded on the client, or because the dataset that matches the current filter value(s) is already loaded on the client, and the new filter value is more restrictive than the old - then it will do so. Otherwise, it will fire a server request.

    Comment

    Working...
    X