Base solution for your next web application
Open Closed

UI Grid Edit Scrolling Issue #392


User avatar
0
thobiasxp created

Hi,

We got a major issue in module zero ui grid while scrolling. if we scroll ui grid for view more items the edit and delete buttons are misaligned also if we perform action in end set of data's edit and delete buttons are not enabled. if our application we want to show bulk of data's in ui grid. so we need a proper solution for this. here i attached the screen shot also.

Kindly give a solution for this

Thank you


2 Answer(s)
  • User Avatar
    0
    hikalkan created
    Support Team

    Hi,

    One of your button is not visible, as I see this is the problem? I will test with bigger data. Can you create an issue on Github for this problem (<a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues">https://github.com/aspnetzero/aspnet-zero/issues</a>). I had a similar problem with scrolling ui-grid before. It may be similar to your case: <a class="postlink" href="https://github.com/angular-ui/ui-grid/issues/3020">https://github.com/angular-ui/ui-grid/issues/3020</a> So, probably it's because of ui-grid, but I will try to fix it, or suggest a workaround.

  • User Avatar
    0
    phoenix created

    That should fix that issue:

    .ui-grid-render-container-body {
       position: relative;
    }
    
    .ui-grid-cell-contents div.btn-group {
       position: absolute !important;
    }