I have a grid with a GridDropDownColumn. In normal browse mode the data wont display, even though there are rows in the grid, the column GridDropDownColumn doesnt show the data. If I select edit, the drop down appears with the data. Ive been trying to find a solution to this for quite a while, even telerik support cant help me. Can anyone help ? Heres the code for the grid.
| <telerik:RadGrid ID="RadGridSecondaryCategories" runat="server" OnNeedDataSource="RadGridSecondaryCategories_NeedDataSource" |
| AutoGenerateEditColumn="True" AutoGenerateDeleteColumn="True" AllowAutomaticInserts="False" |
| AllowAutomaticDeletes="False" GridLines="None" |
| AllowAutomaticUpdates="False" AllowSorting="True" |
| Skin="Vista" AllowMultiRowEdit="False" |
| onitemcommand="RadGridSecondaryCategories_ItemCommand" |
| onitemdatabound="RadGridSecondaryCategories_ItemDataBound" |
| ondeletecommand="RadGridSecondaryCategories_DeleteCommand" |
| oninsertcommand="RadGridSecondaryCategories_InsertCommand" |
| onupdatecommand="RadGridSecondaryCategories_UpdateCommand" PageSize="5"> |
| <MasterTableView CommandItemDisplay="Top" AutoGenerateColumns="False" OverrideDataSourceControlSorting="True" |
| EditMode="InPlace" UseAllDataFields="True" > |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px" /> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px" /> |
| </ExpandCollapseColumn> |
| <Columns> |
| <telerik:GridBoundColumn DataField="ID" DataType="System.Int32" HeaderText="ID" |
| ReadOnly="true" Visible="false" SortExpression="ID" UniqueName="ID"> |
| </telerik:GridBoundColumn> |
| <telerik:GridDropDownColumn DataField="Category" |
| ListTextField="Category" ListValueField="Category" HeaderText="Category" UniqueName="SecondaryCategory" Display="True"> |
| </telerik:GridDropDownColumn> |
| </Columns> |
| </MasterTableView> |
| <FilterMenu EnableTheming="True"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </FilterMenu> |
| </telerik:RadGrid> |
| RadGrid for ASP.NET AJAX Q2 2008 | |
| Exporting tips and tricks | |
If
LstCPVStatus.SelectedValue = 0 Then
MsgBox1.alert("Select CPV Status") // this is some third pary control
Exit Sub
End If
Similaryly i need to use the radalert on this condition.How can i display with the above alert msg ..
thanks & regards
Hi,
I have an ASPX page which has a RadMenu and a RadWindowManager with a window defined in it as follows:
| <telerik:RadWindowManager ID="_MasterRadWindowManager1" runat="server" ReloadOnShow="true" DestroyOnClose="false"> |
| <Windows> |
| <telerik:RadWindow runat="server" NavigateUrl="~/ModalPage.aspx" Modal="true" |
| ID="_NewsWindow" Width="800" Height="500" Behavior="Close" DestroyOnClose="false" |
| ReloadOnShow="true" VisibleTitlebar="true" VisibleStatusbar="true" VisibleOnPageLoad="true" /> |
| </Windows> |
| </telerik:RadWindowManager> |
| <telerik:RadMenu ID="RadMenu3" runat="server"> |
| <Items> |
| <telerik:RadMenuItem runat="server" Text="MenuItem1" NavigateUrl="~/MenuItem1.aspx" style="z-index:-1;" /> |
| <telerik:RadMenuItem runat="server" Text="MenuItem2" NavigateUrl="~/MenuItem2.aspx" style="z-index:-1;"/> |
| <telerik:RadMenuItem runat="server" Text="MenuItem3" NavigateUrl="~/MenuItem3.aspx" style="z-index:-1;"/> |
| </Items> |
| </telerik:RadMenu> |

Hi,
I am using the OnItemClick event of the RadMenu to perform some action in the server side like
OnItemClick
="cmbLanguage1_ItemClick"
This is working fine in Internet explorer but in Mozilla FireFox the event itself is not getting fired.
Is there any way by which I can fire the server side event cmbLanguage1_ItemClick on clicking a menu item.
Regards,
Avik