I see that the dropdown tree has a get_embeddedTree() function that returns a RadTreeView. I wanted to get all nodes in the tree and test if they had any children.
So I can do embeddedTree.get_allNodes(); and iterate through that array. Here comes the part I am asking about. In chrome console, I see there is a _hasChildren() function for a node. I don't see this documented anywhere on the Telerik site. Why is this function undocumented? Is it safe to use?

Is it possible and legal (from licensing) to utilize the RadAsyncUpload dnn wrapper (DnnAsyncUpload) to apply a custom skin to the control for use in a custom module (non-commercial)? I have tried using the CSS file from various Telerik skins and have followed the tutorial from the Telerik docs, but they don't seem to work. I'm including the CSS file as follows:
<dnn:DnnCssInclude runat="server" FilePath="~/DesktopModules/myModule/css/Upload.Bootstrap.css" />
The CSS file is successfully being included.
The control is defined as:
<dnnweb:DnnAsyncUpload runat="server" ID="dnnUpload" MultipleFileSection="Automatic" EnableEmbeddedSkins="false" ControlObjectsVisibility="All" Skin="Bootstrap" ... />
If this isn't support for the DNN wrapped control, no problem... I just didn't want to spend time figuring it out if it isn't supported. If it is supported, why won't the custom skins display?
Thanks.
hi,
in first pic i have tree view wich it bind from DB and i have button i have some instruction in envent nodecheck before i click button the event work after clicking and binding gridview the instruction in nodecheck dosen't work i dont know plz help

Hello
I am using a gridview which is having GridClientSelectColumn.
Is there any way to get the checkstate of a row serverside ?
I tried the following, but checkbox is never checked
foreach (GridDataItem item in oGridFields.Items) {
CheckBox chk = (CheckBox)item["prgSel"].Controls[0];
if (chk.Checked) {
}
}
Thanks for any help.
I have a webpage that has a regular RadGrid with GridBoundColumns and GridNumericColumns.
During the excel export the formatting of my numerical data seems to get lost. Columns that appear on the grid on the page will look like:
123.43
0.00
The aspx for the regular RadGrid has code that another developer wrote that includes attributes:
EmptyDataText
DataFormatString
FooterAggregateFormatString
Here is what that looks like:
<telerik:GridNumericColumn DataField="revenue" EmptyDataText="0.00" HeaderText="Revenue" DataFormatString="{0:#,##0.00;(#,##0.00)}"<br> Groupable="false" UniqueName="revenue" Aggregate="Sum" FooterText=" " FooterAggregateFormatString="{0:#,##0.00;(#,##0.00)}"><br> <HeaderStyle HorizontalAlign="Center" /><br> <ItemStyle HorizontalAlign="Right" Wrap="false" /><br> <FooterStyle HorizontalAlign="Right" Wrap="false" /><br> </telerik:GridNumericColumn>
In the RadPivotGrid the similar column to above appears like so:
<telerik:PivotGridAggregateField DataField="actualValue" Aggregate="Sum"><br> <HeaderCellTemplate><br> <asp:Label ID="lblActualValue" Text="Actual" runat="server" /><br> </HeaderCellTemplate><br> </telerik:PivotGridAggregateField>So how can I add the attriutes I mentioned to the PivotGridAggregateField?
Thanks,
Julian
I try to implement a RadSlider in RadGrid EditTemplate according to this demo
demos.telerik.com/aspnet-ajax/slider/examples/databinding/defaultvb.aspx
Something like this:
http://www.ulealliance.org/certification/list.aspx
But the JavaScript cannot find the slider and tooltipmanager.
Could you test with a short demo app?
PS: I do not need the functionality with the thumbnails, onlu Slider ith step Tooltips.
Thanks,
Marc
Is there an ETA on the Visual Style Builder supporting the RadNavigation control?
Also is there a support page for customizing RadNavigation via CSS? I can't find one dedicated to RadNavigation. At this time all I want to do is alter the background color of the default skin.
Hi,
I try to set a relative path for the temporary upload path, but I'm not know what's wrong.
<add key="Telerik.AsyncUpload.TemporaryFolder" value="/upload/_temp" />
leads to: 'C:\upload\_temp\RadUploadTestFile'
<add key="Telerik.AsyncUpload.TemporaryFolder" value="upload/_temp" />
leads to: 'C:\inetpub\twoeyes_intranet_beta\documentruler\upload\_temp\RadUploadTestFile'
The first example seems to ignore the MapPath which is: 'C:\inetpub\twoeyes_intranet_beta\'
The second example shows an expected behaviour.
Best regards,
Roland