hello abu,
I’m migrating development from the 2.6.3 release to the 2.8 release, I’ve noticed that I’m not able to remove the buttons from the bottom bar.
As the image is removed from both the top and bottom, in the previous release it was only removed from the bottom.
Follow the examples.
What method do I use to remove the bottom buttons?
Thanks in advance for your attention.
1 Answers
Hi,
Please try this: Change following line
jQuery('.ui-jqgrid-pager td[id$=pager_left]').html('');
To:
setTimeout(()=>{ jQuery('.ui-jqgrid-pager td[id$=pager_left]').html(''); },200);
Hi Abu,
Everything worked.
Thanks.
Your Answer