or
| RadAjaxManager.ResponseScripts.Add(setTimeout(function(){var _window = $find('" + RadWindow.ClientID + "'); _window.show();}, 250)); |
<script type="text/javascript"> function CallAlert(rad) { alert("Welcome RadComboBox Sample"); } </script><telerik:RadComboBox ID="RadComboBox1" runat="server" OnClientBlur="CallAlert" > <Items> <telerik:RadComboBoxItem Text="--Select--" Value="0"/> <telerik:RadComboBoxItem Text="One" Value="1"/> <telerik:RadComboBoxItem Text="Two" Value="2"/> <telerik:RadComboBoxItem Text="Three" Value="3"/> <telerik:RadComboBoxItem Text="Four" Value="4"/> </Items>
</telerik:RadComboBox>Hi Forum, We have developed application using Telerik controls and the controls are working fine when we run the application from Visual studio IDE. Issue is when we tried hosting in IIs the controls are not working. We tried creating MSI package and hosted in IIs. All pages are working but Telerik controls are not functioning. Kindly help. Regards, Dinesh I have six checkboxes inside telerik combobox control . On checking the first checkbox, I have to disable second and third one.
Similarly, on checking fifth checkbox I have to disable sixth one. I tried using onitemchecked,autopostback =true and onclientitemchecked events but couldn’t get the result.
Please help with the sample codevoid Grid_ItemDataBound(object sender, GridItemEventArgs e)
{
foreach (GridColumn column in RadFileExplorer1.Grid.MasterTableView.RenderColumns)
{
if ((column is GridTemplateColumn) && (column.HeaderText.Equals("Document Title")))
{
if (e.Item is GridDataItem)
{
GridDataItem gridItem = e.Item as GridDataItem;
string text = gridItem[column.UniqueName].Text;
//this line will show a tooltip
gridItem[column.UniqueName].ToolTip = text;
}
}
}
}
I'm unable to get the value of the cell - can you please help?

<telerik:RadRotator Width="350px" Height="75px" ItemHeight="75px" ItemWidth="75px" CssClass="horizontalRotator" WrapFrames="false" ScrollDuration="500" RotatorType="Buttons" runat="server" ID="imageRotator"> <ItemTemplate > <img id="imgCarousel2" class="item" width="75" height="75" class="item" src="<%#Eval("PhotoFile")%>"alt="" onclick="ChangeRecipePhoto('<%#Eval("PhotoFile")%>','<%#Eval("PhotoID")%>')" /> </ItemTemplate> </telerik:RadRotator> imageRotator.DataSource = Photos()imageRotator.DataBind() <style type="text/css"> .item { border: solid 10px #fff; margin: 1px;} </style>