I have an issue with a Radcombobox. I am trying to set the height of the radcombobox on ClientSelectedIndexChanged, but I am getting a rendering issue and I cannot see where the problem is.
Below, you will find my code;
CSS:
div.RadComboBox_Windows7 .rcbInputCell INPUT.rcbInput
{
height: 37px;
}
ASPX:
<telerik:RadComboBox ID="RCB_Test" runat="server" Width="340px" OnClientSelectedIndexChanged="OnClientSelectedIndexChangedHandler">
<Items>
<telerik:RadComboBoxItem runat="server" Text="Testing please" Value="Testing please" />
<telerik:RadComboBoxItem runat="server" Text="Testing please" Value="Testing please" />
<telerik:RadComboBoxItem runat="server" Text="Testing please" Value="Testing please" />
</Items>
</telerik:RadComboBox>
JavaScript:
function OnClientSelectedIndexChangedHandler(sender, eventArgs) {
var item = sender.get_inputDomElement();
item.style.height = "37px";
I have also attached an image of the problem.
Any help would be appreciated.
}
Hi,
I've implemented the imagegallery in lightbox mode on one of our site and it work fine except when I click on the same image twice, then the image just won't load.
I went to look if it was working on your demo and it doesn't work either.
- Go to : http://demos.telerik.com/aspnet-ajax/image-gallery/examples/functionality/modes/defaultcs.aspx
- Select the LightBox mode.
- Click on an image
- Close the lightbox window with the X in the top right corner
- Click on the same image
The image just don't show up and the loading take forever.
I just want to set the Cache Header "max-age" of ".axd" resources like "Telerik.Web.UI.WebResource.axd","ScriptResource.axd" etc.
So for achieving that I just implemented the IHttpModule and used corresponding Event as in the following code-
"
So just want to know that is this the correct approach or there are some other ways to set Cache Header "max-age" of "axd" resources.


Wanted to make you aware of an issue with radscheduler,24hr view and the bootstrap skin. It seems with that skin that you are not able to vertically scroll past 10pm (11pm is entirely cut out). You can view this yourself in either Chrome or Firefox on your own examples (didn't check IE).
If you are aware do you have a workaround prepared or anyone else who's encountered the same?
I want to create a multilevel list with RadFlowDocument, like this :
1. level 1.
1.1. level 1.1.
1.1.1. level 1.1.1.
1.1.2. level 1.1.2.
1.2. level 1.2.
1.3. ...
What should I write to the property NumberTextFormat?
Dim list As New Telerik.Windows.Documents.Flow.Model.Lists.List()
document.Lists.Add(list)
list.MultilevelType = Telerik.Windows.Documents.Flow.Model.Lists.MultilevelType.Multilevel
Dim i As Integer = 0
While i < list.Levels.Count
list.Levels(i).StartIndex = 1
list.Levels(i).NumberingStyle = Telerik.Windows.Documents.Flow.Model.Lists.NumberingStyle.Decimal
list.Levels(i).NumberTextFormat = ??????
i = i + 1
End While
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestCase.aspx.cs" Inherits="Test.TestCase" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager runat="server" /> <telerik:RadGrid ID="gvFactors" runat="server" AutoGenerateColumns="false" AllowAutomaticInserts="true" AllowAutomaticUpdates="true" AllowAutomaticDeletes="true" Skin="Metro" OnNeedDataSource="gvFactors_OnNeedDataSource"> <MasterTableView TableLayout="Auto" EditMode="Batch" CommandItemDisplay="Top"> <Columns> <telerik:GridTemplateColumn UniqueName="Text" DataField="Text" ColumnEditorID="tbText"> <ItemTemplate> <%# Eval("Text") %> </ItemTemplate> <EditItemTemplate> <telerik:RadEditor ID="tbText" runat="server" Skin="Metro" Content='<%#Eval("Text")%>' MaxHtmlLength="4000" EditModes="Design"/> </EditItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> </telerik:RadGrid> </div> </form></body></html>using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace Test { public partial class TestCase : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void gvFactors_OnNeedDataSource(object sender, EventArgs e) { IList<DataItem> items = new List<DataItem>(); items.Add(new DataItem() { Text = "test1" }); items.Add(new DataItem() { Text = "test2" }); items.Add(new DataItem() { Text = "test3" }); this.gvFactors.DataSource = items; } } public class DataItem { public String Text { get; set; } }}