Hi Abu,
I want the full grids without the toolbar.
How can I do it?
Using “#list1_toppager, #list1_pager {display:none;}” on the main grid works, but I want the same on SubGrid or MultiGrid.
Help me!!
Thank you
2 Answers
This CSS code will hide all elements with id ending with pager or toppager.
<style>
div[id$=toppager], div[id$=pager] { display:none; }
</style>
Your Answer