
Hi,
Create RadDockZone,RadDock dynamically .And in this RadDock inside we can show the rad chart dynamically please help me

| <asp:LinkButton ID="lbAddPhone" runat="server" onclientclick="javascript:InsertPhone(); return false;">+ Phone/Email</asp:LinkButton> |
| function InsertPhone() { |
| var hid = document.getElementById("<%= hidContactId.ClientID %>"); |
| var oWnd = $find("<%= wndAddPhone.ClientID %>"); |
| oWnd.setUrl("popup_addcontact.aspx?which=3&id=" + hid.value); |
| oWnd.show(); |
| } |
| protected void btnPhoneSave_Click(object sender, EventArgs e) |
| { |
| string closingscript = "closeWin();"; |
| ScriptManager.RegisterStartupScript(this, this.GetType(), "closeWin", closingscript, true); |
| } |
| function closeWin() { |
| var wind = GetRadWindow(); |
| wind.close(); |
| } |
| function GetRadWindow() { |
| var oWindow = null; |
| if (window.radWindow) { |
| oWindow = window.radWindow; |
| } |
| else if (window.frameElement.radWindow) { |
| oWindow = window.frameElement.radWindow; |
| } |
| return oWindow; |
| } |
<telerik:RadAsyncUpload runat="server" ID="radUpload" MultipleFileSelection="Automatic" ManualUpload="true" HideFileInput="true" Localization-Select="Select files ..." EnableFileInputSkinning="true" OnClientFilesSelected="onFilesSelected"></telerik:RadAsyncUpload>
Hi,
Based on above code, just want to ask how to loop through selected files to get the row and size? Please take note that ManualUpload is set to true.
Basically I want to have below piece of code (but this was created for OnClientFileSelected)
args.get_fileInputField().files[0].size;var row = args.get_row(); $(row).addClass("file-row");Hi there , I read many articles on ticker , some of them are Demo1 and ​ Demo2 , code is shown in aspx format how to get the same code in cshtml format .
I also tried only telerik tags in Razor views but still no working ,
I've installed tekerik trial version. does that make any difference
<telerik:RadTicker ID="RadTicker1" AutoStart="true" Width="300px">
<items>
<telerik:RadTickerItem runat="server" ID="RadTickerItem1"
Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip
ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur
sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.">
</telerik:RadTickerItem>
</items>
</telerik:RadTicker>
Hi
I've got 3 RadHtmlCharts one below the other. The​y have different value range f.e. Chart1 from -9 to 5 and Chart2 from -100000 to + 100000. That causes the situation shown on picture, that they are placed not in line. I've already tried to adjust it in JS, but didn't manage to.
My code (I've tried many combinations):
var chart = $find("<%=timeChart.ClientID%>");
chart.get_kendoWidget()._plotArea.axisY.box.expand(50,50);
chart.get_kendoWidget()._plotArea.axisY.box.​pad(50);​
chart.get_kendoWidget()._plotArea.axisY.box.x2 = 150;
chart.repaint();
chart.get_kendoWidget().redraw();
chart.get_kendoWidget()​​.refresh();
None of this have worked.
I'm looking forward for your help
Greets,
Maciek