protected v
oid Page_PreRenderComplete(object sender, EventArgs e)
{
RadComboBox item1 = (RadComboBox)MyFormView.FindControl("ComboBox1");
Panel panel1 = (Panel)MyFormView.FindControl("Panel1");
RadAjaxManager.GetCurrent(Page).AjaxSettings.AddAjaxSetting(item1 , panel1);
}
When I run the app and change the combobox1 value, I get this error: Unknown runtime error.
debuged it the error comes from
"updatePanelElement.innerHTML=rendering;" line
The thing is it works when I use another control but not the panel inside the FormView.
Thanks in advance for your help.
Sima
<telerik:RadRotator ID="rrRotator" runat="server" RotatorType="SlideShowButtons" ScrollDirection="Up,Down"
Width="300px" Enabled="True" ItemHeight="90px" ItemWidth = "300px"
BorderStyle="None">
<ItemTemplate>
<asp:Label ID="lblPayee" runat="server"><%# DataBinder.Eval(Container.DataItem, "payee_attention_name")%></asp:Label> <asp:Label ID="lblCity" runat="server"><%# DataBinder.Eval(Container.DataItem, "payment_city")%></asp:Label>
</telerik:RadRotator>
<div>
<asp:Image ImageUrl="Images/previousSlide.gif" ID="prevButton" AlternateText="Previous Slide"
runat
="Server" Height="34" Width="33" Style="border: 0px" /> <
asp:Image ImageUrl="Images/nextSlide.gif" ID="nextButton" AlternateText="Next Slide"
runat
="Server" Height="34" Width="31" Style="border: 0px" />
</div>
I have set the scroll direction to 'Up, Down'. I still see the arrows and my image buttons do not work for Up and Down. Please let me know if there a solution for this? Also, Can I scroll more than one data at a time?

var links = $find("LinksPanel");
var parent = links.findItemByValue("LINKS");
var item = new Telerik.Web.UI.RadPanelItem();
item.set_text(displayText);
parent.get_items().add(item);
The problem also appears on the online demo (tested under IE7 and FF3). I am using 2009 Q1.
The demo (http://demos.telerik.com/aspnet-ajax/panelbar/examples/clientside/clientsideapi/defaultcs.aspx), when clicking to Add At Runtime creates an item which includes the logo. When a postback is performed (on the demo), the panelbar item loses the image and appears as it should.
Any help would be greatly appreciated.
| $find('<%=myCaptcha.ClientID %>').set_focus(); |
I used telerik menu to display Icon and text vertically so I have written following code it display Icon and text but text not display in center of the image.
My requirement is that I have to display text in bottom of the image and also it should be in center.
<telerik:RadMenu ID="RadMenu1" runat="server" DataSourceID="SiteMapSetup" OnItemDataBound="RadMenu1_ItemDataBound" DataNavigateUrlField="url" Flow="Vertical" >
</telerik:RadMenu>
protected void RadMenu1_ItemDataBound(object sender, Telerik.Web.UI.RadMenuEventArgs e)
{
SiteMapNode node = (SiteMapNode)e.Item.DataItem;
e.Item.ImageUrl = node["ImageURL"];
e.Item.Text ="<br><br><br>" + node["text"] ;
}
.GridRow_Default
td,
.GridAltRow_Default
td
{
overflow: hidden;
}
My Client settings for grid are
<Resizing ClipCellContentOnResize="true" AllowColumnResize="true" ResizeGridOnColumnResize="true" />

