-
Looking for some guidance on how a developer utilizing the AbpCrudPageBase should go about hooking into the Blazorise DataGrid Filter functionality. Maybe something @stsrki can assist with? I've not seen any samples demonstrating this so far. The blazorise doco (extract below) seems to assume we have the entire data-set loaded onto the client begin with:
I'm not sure this is going to work with the AbpCrudPageBase where we are paging Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I think I see where my confusion comes from: I am using Custom Filtering - but I assumed that by setting Filterable="true" on a column that i would then be able to hook into the changed event of the filter text boxes (the ones that get auto created for you) that appear above the columns for filtering. Seems I have to use my own filter textboxes for custom filtering. in fact custom filtering is ONLY usable for in memory :-( |
Beta Was this translation helpful? Give feedback.
-
Having data in memory is one way. The other is to hook to the outside API through the In CustomFilter is a little different because if operated "outside" of DataGrid and whatever you use with it is totally upon yourself. After you do the filtering with |
Beta Was this translation helpful? Give feedback.
-
Yes - the AbpCrudPageBase uses the ReadData mode - I have overriden a method |
Beta Was this translation helpful? Give feedback.
I think I see where my confusion comes from: I am using Custom Filtering - but I assumed that by setting Filterable="true" on a column that i would then be able to hook into the changed event of the filter text boxes (the ones that get auto created for you) that appear above the columns for filtering.
Seems I have to use my own filter textboxes for custom filtering. in fact custom filtering is ONLY usable for in memory :-(