Hi. I have multiple grids set up as tabs using jQuery.tabs(). I noticed when I navigate to another tab the scrolling to fetch more data is disabled. Only when I refresh the grid will the functionality work. The tab that’s initially launched works fine. Can you take a look please? Thanks.
2 Answers
It seems to be a conflict in datagrid and jQueryui tabs library. One quick fix is to refresh grid on tab click.
For e.g. in demo – multiple-tab-grids.php, line 105:
<li><a href="#tabs-3" onclick="$('.ui-icon-refresh').click();">Another Grid</a></li>
Your Answer