Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
143 views
Hello everyone,

it seems like it is not possible to freeze the first two columns of my grid and at the same time allow resizing of the individual columns. Is there a way to achieve this functinality?

Thank you very much!

best regards,

Max
Viktor Tachev
Telerik team
 answered on 06 Jan 2017
1 answer
682 views
Hello,
 How can I download and install Telerik.Web.UI.dll 2015.1.225.45.  I tried using the Telerik Control Panel and Telerik account  but don't see the version I need.
 Thanks,
 Nick
Marin Bratanov
Telerik team
 answered on 06 Jan 2017
2 answers
108 views

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

Rui
Top achievements
Rank 1
 answered on 06 Jan 2017
6 answers
901 views

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

PETER
Top achievements
Rank 1
 answered on 05 Jan 2017
1 answer
250 views

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

Keith
Top achievements
Rank 1
 answered on 05 Jan 2017
1 answer
635 views

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.

Ivan Danchev
Telerik team
 answered on 05 Jan 2017
1 answer
97 views

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.

 

 

 

Viktor Tachev
Telerik team
 answered on 05 Jan 2017
1 answer
120 views

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

Konstantin Dikov
Telerik team
 answered on 05 Jan 2017
5 answers
346 views

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

Nikolay
Telerik team
 answered on 05 Jan 2017
2 answers
261 views

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 If
 
End Sub

 

This is how the RadTreeView looks like right now:

Jiten
Top achievements
Rank 1
 answered on 05 Jan 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?