
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Rows with no data are visible after applying search in grid SAP UI5
The “No Data” rows are being shown in the grid irrespective of having no data is because of the “VisibleRowCount” attribute of the control. It controls the number of visible rows. So, once you are binding the table again after applying the filters, you need to update it dynamically to the number of rows in the matched result.
Something similar to this −
onBindingChange: function(oEvent) { this.getView().byId("<your table>").setVisibleRowCount(oEvent.getSource().getLength()); }
- Related Questions & Answers
- Change no data text for Search in SAPUI5
- Sorting List in SAP UI5 project
- Loading External Libraries in SAP UI5
- CSS Grid Rows
- How to preserve data frame structure after applying a function in R?
- Managing user sessions in SAP UI5 application
- I have SAP UI5 application that I am not able to start after adding to SAP Fiori Launchpad.
- How to create JavaScript data grid for millions of rows?
- Binding OData service to SAP UI5 table
- Binding model to sap.ui.core in SAP UI5 application
- SAP UI5 framework and comparison with JQuesry and Backbone, Angular, etc.
- CSS grid-template-rows property
- Query returning no data in SAP Business One using Table Relationship
- Get access or point to SAP UI5 control
- How to place UI5 code in SAP NetWeaver Server?
Advertisements