Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
55 views
hello, you have a lot of examples, but which control is your own Menu or Tree or Panelbar which you use yourself for your examples.
..attached is the picture.
Kate
Telerik team
 answered on 25 Mar 2014
1 answer
71 views
Hi,

I want to use the Telerik Grid for SharePoint 2013 web parts which are going to be viewed in all major browsers as well as all the mobile devices like iOS, Android, Windows Phones etc.

Can any one please tell me how can I use the Telerik grid for my application. I am using ASP.NET Gridview in my application which needs to be shown on the mobile as well as desktop devices.

Thanks in advance.
Marin
Telerik team
 answered on 25 Mar 2014
0 answers
35 views
We want to create a 4 level grid to display the following information
Level1: Projects – every project number is unique
Level 2: The orders that belong to the project – The orders for every project starts with order no 0001. There could be many orders with the same number (e.g. 0001) but only one order 0001 for each project. Project plus order number is unique
Level3: The Line Items within an order. Again a line item 0001 will appear in every order. Project + Order No + line Item is unique
Level4: The Release Note numbers for each Line Item. There could be many Release not numbers for each Project, Order No, Line Item Combination.
Question:
How should the Master and detail keys be structured for each level.
Lee'Roy
Top achievements
Rank 1
 asked on 25 Mar 2014
2 answers
174 views
Hi
I'm trying to use the RadTreeView like this:
the treeView takes its data from a list.
When I press on a node, I get a value from it (& then later I can call function base on the value)

I have a hard time to set value into the treeView

I set the List like that:
vb.NET:
01.Friend Class SiteDataItem
02.     Private text1 As String
03.     Private id1 As Integer
04.     Private parentId1 As Integer
05.     Private report_id1 As String
06. 
07.     Public Property Text() As String
08.         Get
09.             Return text1
10.         End Get
11.         Set(ByVal value As String)
12.             text1 = value
13.         End Set
14.     End Property
15. 
16. 
17.     Public Property ID() As Integer
18.         Get
19.             Return id1
20.         End Get
21.         Set(ByVal value As Integer)
22.             id1 = value
23.         End Set
24.     End Property
25. 
26.     Public Property ParentID() As Integer
27.         Get
28.             Return parentId1
29.         End Get
30.         Set(ByVal value As Integer)
31.             parentId1 = value
32.         End Set
33.     End Property
34. 
35.     Public Property Report_ID() As String
36.         Get
37.             Return report_id1
38.         End Get
39.         Set(ByVal value As String)
40.             report_id1 = value
41.         End Set
42.     End Property
43. 
44.     Public Sub New(ByVal id As Integer, ByVal parentId As Integer, ByVal text As String, Optional ByVal report_id1 As String = "99")
45.         Me.id1 = id
46.         Me.parentId1 = parentId
47.         Me.text1 = text
48.         Me.report_id1 = Report_ID
49.         
50.     End Sub
51.      
52.      
53.     '--------- Constractor
54.     Public Sub New(ByVal id As Integer, ByVal parentId As Integer, ByVal text As String, Optional ByVal report_id1 As String = "99")
55.         Me.id1 = id
56.         Me.parentId1 = parentId
57.         Me.text1 = text
58.         Me.report_id1 = Report_ID
59.        
60.     End Sub
61. End Class
62.  
63. '=======
64.  
65.  
66.    Private Sub BindToIEnumerable(ByVal treeView As RadTreeView)
67.     Dim siteData As New List(Of SiteDataItem)()
68. 
69.     siteData.Add(New SiteDataItem(1, 0, "Location"))
70.     siteData.Add(New SiteDataItem(2, 0, "Hobbies"))
71.     siteData.Add(New SiteDataItem(3, 1, "func 1", "101"))
72.     siteData.Add(New SiteDataItem(4, 1, "func 2", "102"))
73.     siteData.Add(New SiteDataItem(5, 2, "func 4", "103"))
74.     siteData.Add(New SiteDataItem(6, 2, " func 1" , "104"))
75. 
76. 
77.     treeView.DataTextField = "Text"
78.     treeView.DataFieldID = "ID"
79.     treeView.DataFieldParentID = "ParentID"
80.     treeView.DataValueField = "Report_ID"
81.     treeView.DataSource = siteData
82.     treeView.DataBind()
83. 
84.     
85. 
86. End Sub

As you see, I insert a value,text,iD &parent_id into the RadTreeView,   [line 77-80]
All is built well : the text,ID & Parent_id. But when I try to get the value field it shows me null:


Protected Sub treeView_SideMenu_NodeClick(sender As Object, e As RadTreeNodeEventArgs) Handles treeView_SideMenu.NodeClick
 
 
       Session("funcID") = e.Node.Value  'Unfortunately return NULL
 
 
 
   End Sub

p.s
I Must use the "Value" Property and not "by text" ,because I've identical text menu





Princy
Top achievements
Rank 2
 answered on 25 Mar 2014
1 answer
42 views
Hi,

In prior versions (prior to Q1 2014) the TreeList control would work with Height = "100%", now it downsizes to just 1 row.

Is this by design or a bug - any work around for it?

Regards

Jon
Jon
Top achievements
Rank 1
 answered on 25 Mar 2014
1 answer
31 views
Hello,
I want to set only preview mode with print option only.
Rumen
Telerik team
 answered on 25 Mar 2014
1 answer
87 views
i am programatically create radeditor and set it content and convert into pdf below is the code. but give following error
RadEditor radEdit = new RadEditor();
                radEdit.SkinID = "DefaultSetOfTools";
                radEdit.ContentFilters = EditorFilters.DefaultFilters;
                radEdit.ContentFilters = EditorFilters.PdfExportFilter;
               radEdit.Content= MakeTable();
                radEdit.ExportSettings.OpenInNewWindow=true;
               radEdit.ExportToPdf();

 ERROR : at Telerik.Web.UI.RadEditor.ExportToPdf() give error  Object reference not set to an instance of an object.

please give tell me how do i reslove this issue. ASAP.
Ianko
Telerik team
 answered on 25 Mar 2014
1 answer
40 views
Hello

Is there a way to create layouts like Sitefinity allow you too?  What Telerik controls would I use?  Is there an example?

Thanks,

Example of what I am looking for:
http://www.sitefinity.com/product/drag-drop-layouts
Ivan Zhekov
Telerik team
 answered on 25 Mar 2014
2 answers
103 views
Hi,
I use a hierarchical radgrid and I do insert and update in parent and child table. To enter and insert I use Web User Control and update is working properly. The problem is following: When I do an insert I can not get the Parent ID from current parent row. There are some solutions on the forum but I did not managed to implement in my case (ascx). What is the best way to get ParentID from Child table Web User Control?

Thank you
Samir
Top achievements
Rank 1
 answered on 25 Mar 2014
2 answers
27 views
Hi,

We are using the telerik combobox in SharePoint 2010. Basically, a SharePoint modal dialog window is opened and in that dialog window we are displaying a combobox control. It works fine in most browsers but there seems to be an issue with IE8 and the options of the combobox open in a completely different place.

Please view the screenshot. It is happening only in the dialog window. Looking at it, it seems  It's because IE8 recognises the modal dialog as requiring display in compatibility mode, which breaks the boxes.

In the screen shot the options should appear under division and department combobox.
Hristo Valyavicharski
Telerik team
 answered on 25 Mar 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?