This topic is locked

How to use ajax but table still scrollable

8/12/2018 3:20:36 AM
PHPRunner Tips and Tricks
W
wehaye author
  1. Give some id on your bsgrid class, in html editor section. For example:
    <DIV class="bs-grid" id="skrol" data-container="grid" data-pageid="{$pageid}" {$grid_chiddenattr}>
  2. Go to style, add custom css:

    skrol{display: block; overflow-x: hidden !important; overflow-y: scroll !important;}



    ------

    Note:

    ------

    the key is overflow-y : scroll. Not -ms-overflow-y.

    if you add inline css on html editor, system will auto rename your configuration, from overflow-y to -ms-overflow-y.

    this is what causes the scroll path.
    May be useful.