Telerik controls for Asp.net: Radgrid checkbox column not working properly with scrolling -
Telerik controls for Asp.net: Radgrid checkbox column not working properly with scrolling -
i'm having problem scrolling radgrid contains checkbox column. problem checkboxes don't scroll other columns grid, , position of checkboxes become static.
here code in html:
<rad:radgrid id="grid1" width="800px" height="415px" runat="server" allowsorting="true" allowpaging="false" allowmultirowselection="false" allowfilteringbycolumn="false" autogeneratecolumns="false" onneeddatasource="customformtemplatesgrid_needdatasource" > <mastertableview width="800px" tablelayout="fixed" enableheadercontextmenu="true"> <headerstyle wrap="true" /> <columns> <rad:gridboundcolumn datafield="formname" uniquename="formname" headertext="form name" headerstyle-wrap="true" dataformatstring="<nobr>{0} </nobr>"/> <rad:gridboundcolumn datafield="formdisplayname" uniquename="formdisplayname" headertext="form display name" headerstyle-wrap="true" dataformatstring="<nobr>{0} </nobr>" /> <rad:gridboundcolumn datafield="version" uniquename="version" headertext="version" headerstyle-wrap="true" dataformatstring="<nobr>{0} </nobr>" /> <rad:gridboundcolumn datafield="modulename" uniquename="modulename" headertext="selected module name" headerstyle-wrap="true" dataformatstring="<nobr>{0} </nobr>" /> <rad:gridboundcolumn datafield="createddatetime" uniquename="createddatetime" headertext="created date/time" headerstyle-wrap="true" currentfilterfunction="nofilter" dataformatstring="<nobr>{0} </nobr>" /> <rad:gridboundcolumn datafield="createdby" uniquename="createdby" headertext="created by" headerstyle-wrap="true" dataformatstring="<nobr>{0} </nobr>" /> <rad:gridcheckboxcolumn datafield="deleted" uniquename="deleted" headertext="deleted" /> </columns> <sortexpressions> <rad:gridsortexpression fieldname="formname" sortorder="ascending" ></rad:gridsortexpression> </sortexpressions> </mastertableview> <clientsettings allowdragtogroup="false" enablerowhoverstyle="false"> <resizing allowcolumnresize="true" enablerealtimeresize="false" resizegridoncolumnresize="false" allowresizetofit="true" ></resizing> <selecting allowrowselect="true" /> <scrolling allowscroll="true" usestaticheaders="true" savescrollposition="false"></scrolling> <clientevents onrowselected="gridcustomformtemplates_rowselected" /> </clientsettings> </rad:radgrid>
i loading grid datasource on code behind , binding properly. info displayed problem checkboxes remains mentioned above. suggestions?
i faced problem long ago. problem caused bug in ie. resolve issue
.radgrid .rgdatadiv { position: relative; }
hope helps :) .
asp.net checkbox telerik scroll radgrid
Comments
Post a Comment