I'm running the latest build and using server side selection with a TreeListSelectColumn. Markup is below. The server side event SelectedIndexChanged is firing properly and I am using AJAX to update additional controls from the SQL database. Currently the user has to click on the checkbox (i.e. select column) to fire the selected index event and select the item in the tree. I would like to allow the user to click any column in the list to select the item (i.e. checkbox or item text) and fire the selected index event and subsequently the item to be selected.
Is this possible through a setting? I can't seem to find it. Or is there some custom code I need to add to implement this functionality. Thanks..
<telerik:RadTreeList ID="radtreeCustomer" runat="server" AutoGenerateColumns="false" AllowMultiItemSelection="false" GridLines="None"> <Columns> <telerik:TreeListSelectColumn Display="true" UniqueName="Checked" HeaderStyle-Width="30px"></telerik:TreeListSelectColumn> <telerik:TreeListBoundColumn Display="false" UniqueName="Organization_Id" DataField="Organization_Id"></telerik:TreeListBoundColumn> <telerik:TreeListBoundColumn Display="false" UniqueName="Parent_Organization_Id" DataField="Parent_Organization_Id"></telerik:TreeListBoundColumn> <telerik:TreeListBoundColumn Display="true" UniqueName="Business_Name" DataField="Business_Name"></telerik:TreeListBoundColumn> </Columns></telerik:RadTreeList>Hi all;
I'm struggling with the best way to approach this one. I have a requirement for a grid with two levels grouping (outer and inner). The inner group requires aggregates of the average of the detail lines in the group - no problem there. The outer group, though, needs the average of the inner group results -- NOT the average of all the child detail lines. Anybody have any suggestions how I should approach this?
Thanks,
Jason

<telerik:RadTabStrip ID="RadTabStrip1" SelectedIndex="0" runat="server" MultiPageID="RadMultiPage1" skin="Outlook" CssClass="NoBg"> <Tabs> <telerik:RadTab runat="server" Text="Show Grid" PageViewID="PageView1"> </telerik:RadTab> <telerik:RadTab runat="server" Text="Show Chart" PageViewID="PageView2"> </telerik:RadTab> <telerik:RadTab runat="server" Text="Show Grid & Chart"> </telerik:RadTab> </Tabs></telerik:RadTabStrip><telerik:RadMultiPage id="RadMultiPage1" runat="server" SelectedIndex="0" Width="400"> <telerik:RadPageView id="PageView1" runat="server"> show the radgrid </telerik:RadPageView> <telerik:RadPageView id="PageView2" runat="server"> show the radhtmlchart </telerik:RadPageView> </telerik:RadMultiPage>Hi,
I am having a # error which is inserted by the Rad DatePicker. When i open one of the DatePicker it closes suddenly and the page url adds the # symbol at the end of the Url. Can anyone tell me how to resolve this issue.
Thanks,
Pranith

I would like than the text of a row must just on one line.
Sometimes, the size text are so important and I would like to cut the text after 100px by exemple and don't put on line (by default).
Any ideas to resolve my problem?

| function GridCreated(sender, eventArgs) { |
| var gridID = sender.get_id(); |
| if (gridID != null) { |
| var grid = $('#' + gridID); |
| var td = $("td[colSpan=2]", grid); |
| $(td).attr("colSpan",1); |
| } |
| } |


Hi,
I have used InsertCommand when inserting new rows to the radgrid.
protected void grvTasks_InsertCommand(object sender, GridCommandEventArgs e){ var editableItem = ((GridEditableItem)e.Item); GetTasks(); if (_taskListMain != null) { Task newTask = new Task(_taskListMain.DataConnections); Hashtable values = new Hashtable(); editableItem.ExtractValues(values); if (values["Name"] != null) newTask.Name = (string)values["Name"]; if (values["Description"] != null) newTask.Description = (string)values["Description"]; if (values["EstimateInHours"] != null) newTask.EstimateInHours = int.Parse(values["EstimateInHours"].ToString()); _taskListMain.Tasks.TaskRows.Add(newTask); _taskListMain.Tasks.Save(); }}
I copy data from each field from hashtable to the final class properties. This means lot of rows if there are lot of fields, so I wondering is there another way to copy inserted data from GridEditableItem to final custom class? e.g. Similar function what is use in UpdateCommand ( editableItem.UpdateValues(task);)
Regards,
Auvo

Hello...
I have a radgrid1 (the parent) which allows you to insert records with a formtemplate.
inside radgrid1's form template i have another radgrid (radgrid2) which basically is a child of radgrid one.... think of radgrid1 as a cars, and radgrid 2 as carparts.... so i want to insert a honda.... but as part of honda i want to add engine, seats etc.
my problem is i'm not sure how to approach a scenario where i click "add new record" on radgrid1... my formtemplate pops up... but because performinsert hasn't been called yet.... i can't add items to my radgrid2 since the parent doesnt have a datakeyvalue yet as parent record not inserted yet.
How would you go about this? how would i databind the child grid when i'm still trying to add the parent?
