
Hi to all,
I want to add images and videos to ImageGallery.
I've read the article https://demos.telerik.com/aspnet-ajax/image-gallery/examples/functionality/templates/defaultcs.aspx
but I have to add videos from code behind in VB.
Can anyone tell me how?
Thanks

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. else11. 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.
