Hello,
I'm having some issues trying to use the Popup Edit Form in a RadGrid that is located inside a DIV with the overflow set to hidden. When Insert/Edit is clicked in the RadGrid the PopupEdit form is displayed, but it is cut off due to the DIV overflow requirement (due to the rest of the layout, the div needs to retain the overflow: hidden).
Is there a way to get the Popup Edit form to show without the window contents being cut off despite the container div having a overflow setting of hidden, other that re-positioning the Popup so it does not appear near the edges (if this is the only way, then is it possible to not allow the user to move the Popup)?
I'm having some issues trying to use the Popup Edit Form in a RadGrid that is located inside a DIV with the overflow set to hidden. When Insert/Edit is clicked in the RadGrid the PopupEdit form is displayed, but it is cut off due to the DIV overflow requirement (due to the rest of the layout, the div needs to retain the overflow: hidden).
Is there a way to get the Popup Edit form to show without the window contents being cut off despite the container div having a overflow setting of hidden, other that re-positioning the Popup so it does not appear near the edges (if this is the only way, then is it possible to not allow the user to move the Popup)?
RadGrid1.MasterTableView.EditMode = GridEditMode.PopUp |
RadGrid1.MasterTableView.EditFormSettings.PopUpSettings.Modal = True |
/* column container */ |
.containerinmulticolumn { |
position:relative; |
clear:both; |
float:left; |
width:100%; /* width of whole page */ |
overflow:hidden; /* This chops off any overhanging divs...some some CSS left out of post */ |
} |