Remove items found and items per page options

business

Member
Hi,

Can you please tell me how can remove the text (x items founds (Total items: y) and also x items per page from the top of datagrid layout?

Thanks
 

eugenio

Administrator
Staff member
Hello,
there isn't any option to hide that; maybe you can look at the HTML code generated and, via CSS, hide the DIV elements that contain that part. Please note that the DIV containing x items found (Total items:x) also contains the "DELETE ALL" button.

Best,
 

jason

New member
The code you need if you want to remove the "Items Found" and "Items per Page" on the details pages you need to add the following code to "styles_screen_custom.css" located in the CSS folder:

.grid-status {
display: none !important;
}
 
Top