Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
620
bootstrap dropdown button as table cell in IgniteUI igGrid
posted

I am using IgniteUI igGrid.  I am trying to have a bootstrap dropdown button for one of the table cells of the grid (using the template feature).

{

key: "Action2Id",

headerText: "Action",

dataType: "int",

width: "16%",

template: "

"

}

The issue I'm having is that the dropdown menu is getting cutoff.  I added the following style, which helped. 

<style type="text/css">

#pendingRequestsGrid, #pendingRequestsGrid tr td {

overflow:visible;

}

style>



However, I'm still having issues with the menu being clipped on the right and for rows at the bottom of the iggrid (see attached screenshot).  In short, is there any way you can think of to get the dropdown menu to appear outside (on top of) the iggrid?