
Hi,
When I looked into this demo,
http://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/manual-crud-operations/defaultcs.aspx
I found if I input a long enough product name such as
')aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
The text will be split into two lines in the text box.
The first line only has a single character ( , and other characters are placed in the second line.
Please see the attached screen shot.
What I expect is that the produce name should be in a single line.
This error only reproduce in IE but not in Chrome.
Thanks.
Best regards
Zhang Rui
Hi!
I do somes verification on the codeBehind on the event "RadWizard_ActiveStepChanged(object sender, EventArgs e)".
I need to show or not the finishbutton on c#. How i can do?
thanks
I have a ASP.Net page with a RadGrid that has a Master and Detail Table views. The code-behind is VB.Net.
This is the first time I used the RadGrid with the Master and Detail Table views.
I am using the NeedDataSource event to bind data to the RadGrid.
Once I got it to work, I am finding that the first parent item on the first page is always being expanded. I would like to configure the RadGrid so none of the parent items are being expanded. How do I do that?
Please help!
Sincerely,
Keith Jackson
Hello Everyone,
My requirement below :
When user selects multiple checkbox it will appear in Combo Box itself. When we select options in Radcombobox and close the drop down and open it again, the selected items should be on top position in display order (Change position) and once it is deselected, it should set at same position as it was earlier. The requirement behind this is when there is long drop down, user does not have to scroll till bottom, they can see what he has selected once they open the drop down.
Thank you for your help.

I have a RadCombox box on an aspx page. when the combobox is first on the page it shows the items in it correctly but when i put a div above it the items in the dropdown open somewhere etc please see the screen shot of the error could you please suggest.
Thanks,
Akaash.

Hi,
Will appreciate some help please.
I have started using the pivotgrid and need to implement custom range such as
0-100
101-200
201-300
301-400 and so forth.
How do I do that?
Thanks
Hello,
I have a page that has a radEditor control on it. I was trying to copy and paste an imige into the editor or to drag and drop the image into the editor. It works just fine when using FireFox v45.4.0 but will not work at all when using Cgrome v54.0.2840.99
Can anyone explain why this functionality will not work while using Chrome?
Is there any work around?
Thanks,
Gary
I have an array of paths separated by a delimiter:
Dim paths = New List(Of String)() From { "C:\WINDOWS\AppPatch\MUI\040C", "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727", "C:\WINDOWS\Microsoft.NET\Framework\addins\MUI", "C:\WINDOWS\addins", "C:\WINDOWS\AppPatch", "C:\WINDOWS\AppPatch\MUI", "C:\WINDOWS\Microsoft.NET\Framework\MUI\MUI\0409" }
And I want to create a RadTreeView that will look something like this:
+C: +Windows +AppPatch +addins +Microsoft.NET +Framework...
This is what I have managed to do until now but there's something I'm missing:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim paths = New List(Of String)() From { "C:\WINDOWS\AppPatch\MUI\040C", "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727", "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MUI", "C:\WINDOWS\addins", "C:\WINDOWS\AppPatch", "C:\WINDOWS\AppPatch\MUI", "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MUI\0409" } If Not Page.IsPostBack Then Dim subPathAgg As String Dim pathSeparator As String = "\" ' For each complete individual path For Each path As String In paths subPathAgg = String.Empty ' Fill array of strings with each delimited part Dim arrFolders As List(Of String) = (path).Split(pathSeparator).ToList Dim lastNode As RadTreeNode = Nothing Dim iCount As Integer = 0 'For each one of the folders For Each folder As String In path.Split(pathSeparator) subPathAgg += folder & pathSeparator Dim foundNode As RadTreeNode = RadTreeView1.Nodes.FindNodeByValue(subPathAgg, True) If foundNode Is Nothing Then If lastNode Is Nothing Then lastNode = New RadTreeNode(folder, subPathAgg) RadTreeView1.Nodes.Add(lastNode) Else Dim otherNode = New RadTreeNode(folder, subPathAgg) lastNode.Nodes.Add(otherNode) lastNode = otherNode End If Else If foundNode.Text <> folder Then Dim otherNode = New RadTreeNode(folder, subPathAgg) foundNode.Nodes.Add(otherNode) lastNode = otherNode End If End If Next lastNode = Nothing Next End IfEnd Sub
This is how the RadTreeView looks like right now: