Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
132 views
When I load multiple radEditor (dynamically) onto the page and I start scrolling before they're finished loading, the page jumps all over the place.  This only seems to happen in IE.  Any ideas?
Rumen
Telerik team
 answered on 31 Jul 2008
1 answer
229 views
Hi,

When a row is in edit mode and i press a collapse button of the grouping feature, it does nothing.

Is it still possible to collapse a grouped item when there is a row in edit mode?

Thx in advance
Glenn
Princy
Top achievements
Rank 2
 answered on 31 Jul 2008
2 answers
248 views
Hello,

I have RadEditor (Q2 2008 version 2008.1 619) and I want to know how to customize the appearance of the RadEditor when it is disabled.  When enabled, the RadEditor displays as normal, but when disabled, just the contents are displayed.

Can you tell me how to display the contents of the disabled RadEditor with a border and specific background color?

Thanks,

Randall Price
Rumen
Telerik team
 answered on 31 Jul 2008
5 answers
130 views
Hi,

I'm just taking my first look at the current version of the editor. If a user is playing with the font-size dropdown, trying to find a suitable size for his text, everytime he selects a new size a span tag is added.

So instead of replacing the last span tag, you get a new one.

You end up with something like this:
<span style="font-size: 8px">  
<span style="font-size: 10px">  
<span style="font-size: 11px">  
<span style="font-size: 18px">  
<span style="font-size: 16px">  
 
Hello World!  
 
</span> 
</span> 
</span> 
</span> 
</span> 
 

I've been playing around with this, to be sure it wasn't some freak accident, and it happens more often than not, but still not always.

Not the ideal result.

Regards,
-DJ-
Rumen
Telerik team
 answered on 31 Jul 2008
1 answer
269 views
Hello,
I'm a newbie with Telerik asp.net ajax webcontrols, and I simply love them, one of my customers was asked us to design a web application with filtering included in the grid, so I decided to use the filter functionality from the Telerik radGrid control, when I show the work to my client they replied the control was not "intuitive enough" and say it was "really weird", he show me an example like this http://www.extjs.com/deploy/dev/examples/grid-filtering/grid-filter.html I know we can achieve the same results using a context menu, but have you looked in a future to add something like that?

Thanks a lot!
Vlad
Telerik team
 answered on 31 Jul 2008
1 answer
68 views
I don't see the editor mentioned in the What's New page. Does this mean there are no worth mentioning new features?

Abdu
Rumen
Telerik team
 answered on 31 Jul 2008
4 answers
122 views
I want to know how to set up GridClientSelectColumn in a radgrid? Please be as specific as possible.
Shinu
Top achievements
Rank 2
 answered on 31 Jul 2008
1 answer
86 views
Hi,

I am using 'Image Menu' with 'imageURL' and 'hoveredImageURL' property. Both are working fine for me.

I need my 'Menu Item' get selected after post back. (e.g with different image may be, like hovered image). Do image menu has any property to set for selecting the item after postback?

Hope to hear you fast.

Aamir
Atanas Korchev
Telerik team
 answered on 31 Jul 2008
7 answers
273 views

Hello,

I have copied some of your example about Hierarchical Data Binding but for some reason my copy is not producing a herarchical view, all of the items are bound to the same menu level.

Code:

TreeView1.DataValueField = "Id";
TreeView1.DataTextField = "Name";
TreeView1.DataFieldParentID = "ParentId";

TreeView1.DataSource = ModelManager.Provider.GetMembersBookmarks(5148);
TreeView1.DataBind();

Data:

Id, Name,                ParentId 
1    Bookmarks         0
2    folder                 1
3    test                    2

I hope that you can help me. 

Many thanks

Richard Priddy

Atanas Korchev
Telerik team
 answered on 31 Jul 2008
3 answers
111 views
Hi

I have problem with generating the tree view from database table. The code is as following

ASPX

<telerik:RadTreeView ID="RadTreeView1" runat="server" Skin="Vista"

OnNodeExpand="RadTreeView1_NodeExpand" >

</telerik:RadTreeView>

VB

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

If Not Page.IsPostBack Then

LoadRootNodes()

End If

End Sub



Private Sub LoadRootNodes()

Dim connection As New SqlConnection(ConfigurationManager.ConnectionStrings("MYConnection").ConnectionString)

Dim selectCommand As New SqlCommand("SELECT * FROM tblA order by tp1", connection)

Dim adapter As New SqlDataAdapter(selectCommand)

Dim data As New DataTable()

adapter.Fill(data)

Dim counter As Integer

counter = 1

For Each row As DataRow In data.Rows

Dim node As New RadTreeNode()

node.Text = row(

"colA").ToString + " . " + row("ColB")

node.Value = row(

"ColC").ToString

node.ExpandMode = TreeNodeExpandMode.ServerSide

RadTreeView1.Nodes.Add(node)

counter += 1

Next

e Sub LoadRootNodes() 

End

Sub

Protected Sub RadTreeView1_NodeExpand(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTreeNodeEventArgs) Handles RadTreeView1.NodeExpand

'If Not Me.Page.IsPostBack Then

Dim connection As New SqlConnection(ConfigurationManager.ConnectionStrings("MYConnection").ConnectionString)

Dim selectCommand As New SqlCommand("SELECT distinct * FROM tblB WHERE achild = @a order by Sequence ", connection)

selectCommand.Parameters.AddWithValue(

"a", e.Node.Value)

Dim adapter As New SqlDataAdapter(selectCommand)

Dim data As New DataTable()

adapter.Fill(data)

For Each row As DataRow In data.Rows

Dim node As New RadTreeNode()

node.Text = 

row("ColD").ToString

node.Value = row(

"ColE").ToString

node.ExpandMode = TreeNodeExpandMode.ServerSide

e.Node.Nodes.Add(node)

Next

e.Node.Expanded =

True

e.Node.ExpandMode = TreeNodeExpandMode.ClientSide

End Sub



which loads the preant nodes from the database. 

Now the problem is when I Expand the tree view it Double up the child nodes.

Can anyone help regarding this.
Thanks
Ricky

Atanas Korchev
Telerik team
 answered on 31 Jul 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?