I'm looking for filtering just a List in Client Side and let other like table etc etc filtering in server side Is there any options to add to the list to filter in client side ? Regards
相关问题
- How to Load Dependencies Relative to Defining Modu
- Shared event handler for XML views with different
- UI5 performance parameters: data-sap-ui-preload vs
- Event for view leave
- How can I access the AST that VSCode creates
相关文章
- How to use “formatMessage” module with i18n model
- where are the SAPUI5 icons stored?
- How to input only month and year in UI5?
- SAPUI5 JSONModel and JSONP
- Required field validator in sapui5
- How to group SAPUI5 OData before bind to control a
- Perform Action after the Binding Is Complete
- SAPUI5 / OpenUI5: Packaging
Serban is correct. I just add one sample code so that you can refer when you want to change all your operation on model to client mode. I looks like this:
Pay attention to the property defaultOperationMode; you can change the mode by the property.
Cheer!
You can use the operation mode parameter for the v2.ODataModel. This parameter can be set at model level (see the
defaultOperationMode
constructor parameter) or at binding level (see theoperationMode
constructor parameter).Based on this parameter, the model fetches data differently:
To read more about the operation mode, check out the corresponding documentation: OperationMode.
If you want to use this only on one list, then you should you the binding variant: