Hi,
I have a Grid in a page where I have updated the Radcontrols from version 2009.2.701 to 2013.2.611
The grid (code below) contains some databound columns and then a template column.
Now, when the grid is displayed, only the template column shows even though the databound columns are set to visible. Previously all visible columns were displayed as expected.
Does anyone have any idea how I can fix this?
Thank you
Paul
I have a Grid in a page where I have updated the Radcontrols from version 2009.2.701 to 2013.2.611
The grid (code below) contains some databound columns and then a template column.
Now, when the grid is displayed, only the template column shows even though the databound columns are set to visible. Previously all visible columns were displayed as expected.
Does anyone have any idea how I can fix this?
Thank you
Paul
<rad:radgrid id="CheckListGrid" runat="server" AutoGenerateColumns="False" GroupingEnabled="False" style="position:absolute; top:73px; left:0px" width="900px" height="515px" EnableEmbeddedSkins="False" Skin="XLogixBlue" CellSpacing="0" GridLines="None"> <clientsettings> <scrolling AllowScroll="true" scrollheight="500px" usestaticheaders="true"/> <Selecting AllowRowSelect="true" /> </clientsettings> <mastertableview width="880px"> <columns> <rad:GridBoundColumn UniqueName="iCheckItemID" DataField="iCheckItemID" display="false" ></rad:GridBoundColumn> <rad:GridBoundColumn UniqueName="sDataType" DataField="sDataType" display="false"></rad:GridBoundColumn> <rad:GridBoundColumn UniqueName="CheckDescription" DataField="CheckDescription" HeaderText="Description" Visible="true"> <HeaderStyle width="280px"/> <ItemStyle width="280px" height="40px" Font-Size="Larger" font-bold="true"/> </rad:GridBoundColumn> <rad:GridBoundColumn UniqueName="CategoryDescription" DataField="CategoryDescription" HeaderText="Category"> <HeaderStyle width="70px"/> <ItemStyle width="70px" height="40px"/> </rad:GridBoundColumn> <rad:GridBoundColumn UniqueName="bMandatory" DataField="bMandatory" HeaderText="Mandatory"> <HeaderStyle width="55px"/> <ItemStyle width="55px" height="40px"/> </rad:GridBoundColumn> <rad:GridBoundColumn UniqueName="sRange" DataField="sRange" HeaderText="Range"> <HeaderStyle width="100px"/> <ItemStyle width="100px" height="40px" Font-Size="Larger" font-bold="true"/> </rad:GridBoundColumn> <rad:GridTemplateColumn UniqueName="ValueTemplate" HeaderText="Entry"> <HeaderStyle width="270px"/> <ItemStyle width="270px" height="40px"/> <ItemTemplate> <asp:panel id="UploadPanel" runat="server" style="display:none; text-align:left"> <asp:FileUpload id="CheckItemUpload" runat="server" width="270px" onkeydown="return false;"/> </asp:panel> <asp:panel id="ConfirmPanel" runat="server" style="display:none; text-align:center"> <input type="button" id="ConfirmYes" value="Yes" style="width:80px; height:35px; background-color:Silver" onclick="ToggleConfirmButton(this);"/> <input type="button" id="ConfirmNo" value="No" style="width:80px; height:35px; background-color:Silver" onclick="ToggleConfirmButton(this);"/> <input type="hidden" id="ConfirmResult" runat="server" value="" /> </asp:panel> <asp:panel id="TextBoxPanel" runat="server" style="display:none; text-align:left"> <asp:textbox id="CheckItemTextBox" runat="server" width="210px"></asp:textbox> <img id="WorksOrderKeyboard" alt="Show Keyboard" src="/XLogix/Images/Icon Buttons/Keyboard Btn.png" runat="server"/> </asp:panel> <asp:panel id="DropDownPanel" runat="server" style="display:none; text-align:left"> <asp:dropdownlist id="CheckItemDropDown" runat="server" dataTextField="sDescription" DatavalueField="iCheckItemOptionID" width="270px" font-size="Large"></asp:dropdownlist> </asp:panel> </ItemTemplate> </rad:GridTemplateColumn> </columns> </mastertableview></rad:radgrid>