Hi, iI use the new Release 2008 Beta for Prometheus dll.
With the RadGrid I use a 2 level hierarchy. All work good except that at the initial load page some icon are missing in the grid. For example the expand "+" icon and the New Item icon do not appear but are present. If I click at the location that icon should be displayed the expand work. Same thing append if I click were the Add icon sould be.
After I click on one of the "invisible" icon for the firts time, all missing icon are corretly displayed.
Any suggestion? Here my aspx grid part:
With the RadGrid I use a 2 level hierarchy. All work good except that at the initial load page some icon are missing in the grid. For example the expand "+" icon and the New Item icon do not appear but are present. If I click at the location that icon should be displayed the expand work. Same thing append if I click were the Add icon sould be.
After I click on one of the "invisible" icon for the firts time, all missing icon are corretly displayed.
Any suggestion? Here my aspx grid part:
| <telerik:RadGrid ID="RadGridSections" runat="server" Skin="Telerik" ShowStatusBar="true" |
| Width="95%" AutoGenerateColumns="False" PageSize="3" AllowSorting="True" AllowMultiRowSelection="False" |
| AllowPaging="True" GridLines="None" AllowAutomaticDeletes="True" AllowAutomaticInserts="True" AllowAutomaticUpdates="True" |
| OnItemUpdated="RadGrid1_ItemUpdated" OnItemDeleted="RadGrid1_ItemDeleted" OnItemInserted="RadGrid1_ItemInserted" OnInsertCommand="RadGrid1_InsertCommand"> |
| <PagerStyle Mode="NumericPages"></PagerStyle> |
| <MasterTableView AllowMultiColumnSorting="True" Width="100%" CommandItemDisplay="Top" Name="Section"> |
| <DetailTables> |
| <telerik:GridTableView Width="100%" runat="server" CommandItemDisplay="Top" Name="SousSec"> |
| <ParentTableRelation> |
| <telerik:GridRelationFields DetailKeyField="ParentID" MasterKeyField="ID" /> |
| </ParentTableRelation> |
| <Columns> |
| <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn1"> |
| <HeaderStyle Width="20px" /> |
| <ItemStyle CssClass="MyImageButton" /> |
| </telerik:GridEditCommandColumn> |
| <telerik:GridBoundColumn UniqueName="ID" HeaderText="ID" DataField="ID" Visible="false"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn UniqueName="Nom" HeaderText="Nom" DataField="Nom"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn UniqueName="NomEng" HeaderText="NomEng" DataField="NomEng"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn UniqueName="Position" HeaderText="Position" DataField="Position"></telerik:GridBoundColumn> |
| <telerik:GridCheckBoxColumn UniqueName="Visible" HeaderText="Visible" DataField="Visible"></telerik:GridCheckBoxColumn> |
| <telerik:GridButtonColumn ConfirmText="Effacer cette section?" ButtonType="ImageButton" CommandName="Delete" Text="Delete" UniqueName="DeleteColumn2"> |
| <HeaderStyle Width="20px" /> |
| <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" /> |
| </telerik:GridButtonColumn> |
| </Columns> |
| <SortExpressions> |
| <telerik:GridSortExpression FieldName="Position" SortOrder="Descending"></telerik:GridSortExpression> |
| </SortExpressions> |
| </telerik:GridTableView> |
| </DetailTables> |
| <Columns> |
| <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn"> |
| <HeaderStyle Width="20px" /> |
| <ItemStyle CssClass="MyImageButton" /> |
| </telerik:GridEditCommandColumn> |
| <telerik:GridBoundColumn UniqueName="ID" HeaderText="ID" DataField="ID" Visible="false"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn UniqueName="Nom" HeaderText="Nom" DataField="Nom"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn UniqueName="NomEng" HeaderText="NomEng" DataField="NomEng"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn UniqueName="Position" HeaderText="Position" DataField="Position"></telerik:GridBoundColumn> |
| <telerik:GridCheckBoxColumn UniqueName="Visible" HeaderText="Visible" DataField="Visible"></telerik:GridCheckBoxColumn> |
| <telerik:GridButtonColumn ConfirmText="Effacer cette section?" ButtonType="ImageButton" CommandName="Delete" Text="Delete" UniqueName="DeleteColumn"> |
| <HeaderStyle Width="20px" /> |
| <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" /> |
| </telerik:GridButtonColumn> |
| </Columns> |
| <SortExpressions> |
| <telerik:GridSortExpression FieldName="Position"></telerik:GridSortExpression> |
| </SortExpressions> |
| </MasterTableView> |
| </telerik:RadGrid> |