Hi,
I wanna know if it's possible to "customize" the YAxis's Title like this :
- I set the rotation value to "1" to put the Title in "hozitontaly mode" (may be is there a better way ?) and I want set 1 word by line in this title (because when the title is too long, it move the HtmlChart, and so the render is bad ..., as you can see on the attached file)
- OR may be it's possible to put the Title above the Axis ?
Thanks a lot,
Regards
<telerik:RadButton ID="RadButton1" Text=" " Width="30px" Icon-PrimaryIconUrl="https://secure.prooportal.com/Style/img/icon/sys/16x16/plain/check.png" Icon-PrimaryIconLeft="5px" Icon-PrimaryIconTop="4px" EnableSplitButton="true" RenderMode="Classic" runat="server"></telerik:RadButton>

Hello,
when toolbar position is set to Top or Bottom it does not showing correctly number of items and current item. Also when user click to play slideshow, toggle fullscreen or show/hide toolbar it cause server postback and does not working.
If toolbar position is set to top inside or bottom inside toolbar is working.
I have created ImageGallery in codebehind and this property is setup in CreateChildControls method.
Is it issue or is there some way how to fix?
Thanks
Vlad

AutoCompleteBoxEntry childNode = new AutoCompleteBoxEntry(); childNode.Text = lblTeamLeaderName.Text; childNode.Value = lblTASKTEAM_ID.Text; txtusers.Entries.Add(childNode);txtusers.Entries[0].Value = lblTASKTEAM_ID.Text; txtusers.Entries[0].Text = lblTeamLeaderName.Text;Hi,
I want to use client side binding and need to set additional Parameters (projectId) for GetTasks(). Every other controls (scheduler etc.) has a client Event, where I can set additional parameters in context. Is there a similar client event in RadGantt? To use session variables is no option for me.
thx
gregor
Hi,
I have an issue with users pasting invalid HTML into the editor (usually from an email client). The HTML comes in with no closing tags, which then causes issues when we render the saved content onto a web page.
Example
<span style>some text<span style>more text <span style> some more textIs there any way to either strip the invalid tags out or add the closing tags when the user pastes the data?
Thanks
Gavin.

I'm unable to get a RadListBox to sort.
.Net 4.5; version 2015.1.225.45
Here is the code below:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="default.aspx.cs" Inherits="WebApplication1._default" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="false" />
<telerik:RadAjaxPanel runat="server" ID="RadAjaxPanel1" CssClass="demo-containers">
<div class="demo-container size-thin">
<telerik:RadListBox
ID="RadListBox1"
runat="server"
Sort="Descending"
DataSortField="t"
CheckBoxes="true"
ShowCheckAll="true" >
</telerik:RadListBox>
</div>
</telerik:RadAjaxPanel>
</form>
</body>
</html>
protected void Page_Load(object sender, EventArgs ed)
{
DataTable dt = new DataTable();
dt.Clear();
dt.Columns.Add("v");
dt.Columns.Add("t");
DataRow a = dt.NewRow();
a["v"] = "1"; a["t"] = "a";
dt.Rows.Add(a);
DataRow b = dt.NewRow();
b["v"] = "2"; b["t"] = "f";
dt.Rows.Add(b);
DataRow c = dt.NewRow();
c["v"] = "3"; c["t"] = "d";
dt.Rows.Add(c);
DataRow d = dt.NewRow();
d["v"] = "4";d["t"] = "x";
dt.Rows.Add(d);
DataRow e = dt.NewRow();
e["v"] = "5"; e["t"] = "b";
dt.Rows.Add(e);
RadListBox1.DataSource = dt;
RadListBox1.DataTextField = "t";
RadListBox1.DataValueField = "v";
RadListBox1.DataBind();
}
<body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <telerik:RadSchedulerRecurrenceEditor runat="server" ID="AppointmentRecurrenceEditor" SharedCalendarID="SharedCalendar" StartDate="2000-01-20" /> <telerik:RadCalendar runat="server" ID="SharedCalendar" ShowRowHeaders="false" RangeMinDate="1900-01-01" /> <asp:HiddenField runat="server" ID="OriginalRecurrenceRule" /> </div> </form></body>