Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
160 views
Hello all,

On my tree I have the OnNodeEdit and OnNodeClick events but every second time I double click on a node the OnNodeClick event fires, anyone else expereince this?

Thanks
Veselin Vasilev
Telerik team
 answered on 10 Oct 2008
3 answers
169 views
Hi

I am about to implement a pie chart usnig RadChart. There will be anything from 4 to over 20 items with varying name lengths - and it is quite vital to keep them legible.

I noticed that the labels overlap each other quite easily out of the box - is there any good way to avoid this?

1. Using legends
- not quite a good idea as they become hard to use when item number gets up there

2. Callout to labels
- Is this supported? If so, how?

3. Anything else?

Thanks in advance!
Vladimir Milev
Telerik team
 answered on 10 Oct 2008
6 answers
221 views
Hi,

How i make to select automatically a node when start page?For example a first node that find...
Because the treeview when page start the node is not yet selected..i would like to select automatically a node..
Rubihno
Top achievements
Rank 1
 answered on 10 Oct 2008
4 answers
121 views
Hello All,


basically GridDateTimeColumncolumn cannot able to displays dates before 1980/1/1. So i not able to use this for Date Of Birth for people who Born before 1980.
How to solve this issue without using template column. i am created RadGrid runtime & add GridDateTimeColumn dynamically.using following code.

  GridDateTimeColumn boundColumn = new GridDateTimeColumn();
                  boundColumn.HeaderText = strColumnName;
                  boundColumn.DataField = Item.Value;
                  boundColumn.UniqueName = strColumnName;
                  boundColumn.DataFormatString = "{0:d}";
                  boundColumn.PickerType = GridDateTimeColumnPickerType.DatePicker;                  RadGridRow.MasterTableView.Columns.Add(boundColumn);

Thanks In Advance....
vinod
Top achievements
Rank 1
 answered on 10 Oct 2008
1 answer
174 views
i put a rad editor Q2 in RadAjaxPanel and every server side event , Invalid JSON primitive: . exception is thrown 
Lini
Telerik team
 answered on 10 Oct 2008
2 answers
148 views
Hi,

I want to call RadGrid [add new record] image button on server side coding. If i click a button(lies out side of the radgrid)  then i need to call RadGrid [add new record] image button.

Regards,
Kishore
Manickam Kishore
Top achievements
Rank 2
 answered on 10 Oct 2008
1 answer
127 views
Hi
I'm haveing a problem with RadComboBox and RadtextBox in an ajax panel (or using the radajaxmanger) with the latest version of the controls.  If the combo box or text box is not visible when the page is first loaded (eg inside a rad grid edit template), a javascript error "Microsoft JScript runtime error: Object expected" error is displayed when the control is made visible.  The combo box will then display disabled. 
This appeared to work fine in previous versions of the controls.  Any idea on what needs to change?

here's is an example page that seems to have the same problem:

<%

@ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="Default3" %>

 

<%

@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>

 

<!

DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<

html xmlns="http://www.w3.org/1999/xhtml">

 

<

head runat="server">

 

 

<title></title>

 

</

head>

 

<

body>

 

 

<form id="form1" runat="server">

 

 

<div>

 

 

<telerik:RadScriptManager ID="RadScriptManager1" Runat="server">

 

 

</telerik:RadScriptManager>

 

 

<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" Height="200px" Width="300px">

 

 

<telerik:radcombobox ID="RadComboBox1" runat="server" Visible="false"

 

 

onselectedindexchanged="RadComboBox1_SelectedIndexChanged">

 

 

<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>

 

 

</telerik:radcombobox>

 

 

<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />

 

 

<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>

 

 

</telerik:RadAjaxPanel>

 

 

</div>

 

 

</form>

 

</

body>

 

</

html>


 

using

System;

 

 

 

using

System.Collections.Generic;

 

 

 

using

System.Linq;

 

 

 

using

System.Web;

 

 

 

using

System.Web.UI;

 

 

 

using

System.Web.UI.WebControls;

 

 

 

using

Telerik.Web.UI;

 

 

 

public

partial class Default3 : System.Web.UI.Page

 

 

 

{

 

protected void Page_Load(object sender, EventArgs e)

 

{

RadComboBox1.Items.Add(

new RadComboBoxItem("testing", "1"));

 

}

 

 

protected void RadComboBox1_SelectedIndexChanged(object o, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e)

 

{

}

 

protected void Button1_Click(object sender, EventArgs e)

 

{

RadComboBox1.Visible = !RadComboBox1.Visible;

}

}

Daniel
Telerik team
 answered on 10 Oct 2008
1 answer
102 views

I’m evaluating Telerik for my company and here is what I’m trying to accomplish.  If you have any suggestions please let me know.

 

I’ve got an org chart hierarchy of divisions, departments within divisions, department heads, and then employees under department heads.  Each level should be expandable / collapsible and each level has about 10 financial columns associated to it and the columns should line up and total.  The financial columns at the department head and employee level are editable. 

 

Option A) I’ve tried this with a self referencing hierarchy grid but the columns do not line up.  The exact problem with the hierarchy grid method is discussed in this forum.

http://www.telerik.com/community/forums/thread/b311D-hatdg.aspx

 

Option B) I’ve also tried this with the grid grouping.  The overall grid hierarchy looks good but I don’t know how to total within the aligned columns at the parent levels.  It seems I can only format a line of text on the row (not each column).

 

Option C) I’m now looking into drawing the entire grid myself including the expandable column and hiding and displaying rows with client javascript functions, but I’m hesitant with this approach.

 

Anyway, if you have any suggestions please let me know.
Todd

Sebastian
Telerik team
 answered on 10 Oct 2008
1 answer
115 views
I created a RadGrid. The master table is binded with parent table "Document" and the detail table is binded with child table "Author". My question is: Is it possible to add a new document with its authors at the same time in the Insert form?

Yavor
Telerik team
 answered on 10 Oct 2008
2 answers
167 views
Hi,

Is there any recommended best practice/sample for hiding a context menu in another frame?

Senario: A page with a context menu has an iframe in it - which also has a context menu. Right click on the iframe (show the context menu) and left click outside the frame does not hide the menu, as it would do on left click inside the menu. And vice versa.

Thanks
Anders Mad.
Top achievements
Rank 2
 answered on 10 Oct 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?