I have a custom AdvancedScheduler Form in which I want to set the focus to a field programmatically in code behind.
So far I tried this, but although the code is called correctly, the .Focus() doesn't reflect in the form. What am I doing wrong?
01.
protected
void
RadSchedulerPlanning_FormCreated(
object
sender, SchedulerFormCreatedEventArgs e)
02.
{
03.
04.
if
( (e.Container.Mode == SchedulerFormMode.AdvancedEdit) || (e.Container.Mode == SchedulerFormMode.AdvancedInsert))
05.
{
06.
var aukunr = (RadComboBox) e.Container.Controls[1].FindControl(id:
"AUkunr"
);
07.
var textbausteinid = (RadDropDownList) e.Container.Controls[1].FindControl(id:
"Textbaustein_Id"
);
08.
if
(aukunr.Enabled)
09.
aukunr.Focus();
10.
else
11.
textbausteinid.Focus();
12.
}
13.
}
Wonder if this had been asked before but I notice the Image Editor in Image Manager of RadEditor lack the ability for pencil drawing or did I miss something here?
I was under the impression that the Image Editor in Image Manager of RadEditor actually is the Rad Image Editor.
i am having header data but it is overwritten by GroupingSettings-GroupContinuesFormatString keeping value Showing {0} of {1} items.
what i need it Showing {0} of {1} items. + my header data
Please see attached image.
We are in the process of replacing Highcharts with the Telerik RADHtmlChart (as we have had so many issues with Highcharts).
As this is an existing system we need to give the same look and feel. We have lots of charts which I have replaced. I am now down to the last one :-)
The chart groups given the following data set:
Range Value
0-9 0
9-18 0
18-28 0
28-37 1
37-46 0
Can you advise me how I can get the RADHtmlChart to graph as per the attached image.
Hi, i need disable the column Q1 from my chart,how i can disable?
My Code is:
<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Width="70%">
<ChartTitle Text="Test">
<Appearance Align="Center" Position="Top"></Appearance>
</ChartTitle>
<Legend>
<Appearance Position="Bottom"></Appearance>
</Legend>
<PlotArea>
<XAxis AxisCrossingValue="0">
<MinorGridLines Visible="false" />
<Items>
<telerik:AxisItem LabelText="Init"></telerik:AxisItem>
<telerik:AxisItem LabelText="Month"></telerik:AxisItem>
<telerik:AxisItem LabelText="1-30"></telerik:AxisItem>
<telerik:AxisItem LabelText="30-90"></telerik:AxisItem>
<telerik:AxisItem LabelText="+ 90"></telerik:AxisItem>
<telerik:AxisItem LabelText="Finaly"></telerik:AxisItem>
</Items>
</XAxis>
<YAxis>
<LabelsAppearance DataFormatString="C0"></LabelsAppearance>
<MinorGridLines Visible="false" />
</YAxis>
<Series>
<telerik:WaterfallSeries>
<TooltipsAppearance Visible="false"></TooltipsAppearance>
<LabelsAppearance Visible="true" Position="Center" DataFormatString="C0" />
<SeriesItems>
<telerik:WaterfallSeriesItem Y="1000000" />
<telerik:WaterfallSeriesItem Y="250000" />
<telerik:WaterfallSeriesItem Y="-150000" />
<telerik:WaterfallSeriesItem Y="-5000" />
<telerik:WaterfallSeriesItem Y="-500000" />
<telerik:WaterfallSeriesItem Y="-350000" />
<telerik:WaterfallSeriesItem Y="750000" />
</SeriesItems>
</telerik:WaterfallSeries>
</Series>
</PlotArea>
</telerik:RadHtmlChart>
Hi,
I am developing this web page in which I have a RadTabStrip connected with a RadMultiPage, both created dynamically, following this demo.
The code is pretty much the same from the demo, the differences are in the layout, in the fact that it is placed inside a Master Page and that (because of the MasterPage) the AjaxManager from the demo is replaced with an AjaxManagerProxy.
Unfortunately it does not work the same way. When I click on a tab that is not yet loaded (i.e. first click on that tab since page creation), all the other already loaded tabs refresh, causing a loss of all the client-side information.
What can be the cause? Is it solvable?
Thank you, best regards.
I'm looking at potentially using Telerik UI for a calendar project but I'm running into a potential issue and I'm wondering if there is a workaround.
Currently if events overlap they are displayed as such
9am |Event1| Event 2| Event3|
10am
11am
Is there a way to display them horizontally?
9am |Event1|
|Event2|
|Event 3|
10am
11am
Hi all,
it is possible to rebind only the current page ?
My scenario is I open a detail using a hyperlink column in a RadWindow .
when the user closes the RadWindow I would only have to rebind only the current page .
thank you