asp.net - DropDownExtender with CheckBoxList Inside GridViewRow -
the problem having using dropdownextender checkboxlist in gridview row panel displays within row affecting row height. possible panel show ontop of other rows in gridview without affecting row height?
<asp:templatefield itemstyle-cssclass="width-25 z-index-neg1" headerstyle-cssclass="nowrap width-25" headertext="<div class='padding-top-sm border-left-white border-bottom-orange height-16'><span class='margin-left-2'>reaction</span></div>"> <itemtemplate> <asp:panel id="pnlreactions" runat="server" cssclass="pnldesign display-none"> <asp:checkboxlist id="chklistreactions" runat="server" width="170px" cssclass="z-index-800 chklistreactions"></asp:checkboxlist> </asp:panel> <asp:label id="lblreactions" runat="server" cssclass="txtbox border-all" height="16px" width="195px" onclick="popupreactions(this, '1');"></asp:label> <cc1:dropdownextender id="dereactions" runat="server" targetcontrolid="lblreactions" dropdowncontrolid="pnlreactons"> </cc1:dropdownextender> </itemtemplate> </asp:templatefield>
thanks
think using css class "overflow:visible" on <td>
elements.
Comments
Post a Comment