Hi,
I have a RadPanelBar, which includes several panelitems. I put a radtreeview under each of the item. then add the first-level treenodes to them programmatically, and the node Expandmode has been set to "ServerSideCallBack" so that the second level node can be expanded on demand.
The program works ok but the only issue is the Scrollbar does not appear automartcally when I expanded the treenode and the content exceed the height. But if I set the Expand="True" and "Selected="true" at the panelitem then the scrollbar appear. But logically only one can be expanded and selected, how to fix this?
I am using the latest build (2012.3.1205.35) and tried on IE 9/Google Chrome, same result
<telerik:RadPanelBar ID="panelBarMain" runat="server" Width="100%"Height="100%" ExpandMode="FullExpandedItem"Skin="Office2007"><BR><Items><BR><telerik:RadPanelItemValue="Trackings" Text="Trackings"Visible="false"><BR><ContentTemplate><BR><telerik:RadTreeViewID="treeTracking"runat="server"><BR><Nodes><BR></Nodes><BR></telerik:RadTreeView><BR></ContentTemplate><BR></telerik:RadPanelItem><BR><telerik:RadPanelItemValue="Tenders" Text="Tenders" Visible="false" Expanded="true"Selected="true"><BR><ContentTemplate><BR><telerik:RadTreeViewID="treeTenders"runat="server"><BR></telerik:RadTreeView><BR></ContentTemplate><BR></Items><BR></telerik:RadPanelBar>Is there a way to configure the RadRadialGauge for quadrant-style or semi-circle gauges. The Silverlight gauges have this option, but I don't see it for the ASP.NET gauge controls.
http://www.telerik.com/help/silverlight/radial-scale-semicircle-gauge.html
http://www.telerik.com/help/silverlight/radial-scale-quadrant-style-gauge.html
var toolBar = $find("<%=RadToolBar2.ClientID%>");toolBar.set_visible(false);var toolBar = $find("<%=RadToolBar2.ClientID%>");toolBar.hide;private void RadGrid_InitCol() { RadGrid1.AutoGenerateColumns = false; RadGrid1.Columns.Clear(); GridBoundColumn boundColumn; boundColumn = new GridBoundColumn(); boundColumn.DataField = "id"; boundColumn.HeaderText = "id"; boundColumn.UniqueName = "id"; boundColumn.HeaderStyle.Width = Unit.Pixel(60); boundColumn.Visible = false; RadGrid1.MasterTableView.Columns.Add(boundColumn); String templateColName = "SO2"; GridTemplateColumn templateColumn; templateColumn = new GridTemplateColumn() { UniqueName = "tempCol0", HeaderText = templateColName, ItemTemplate = new MyTemplate("0", templateColName) //EditItemTemplate = new MyEditTemplate(templateColName) }; RadGrid1.MasterTableView.Columns.Add(templateColumn);}
protected void RadAjaxManager1_AjaxRequest(object sender, Telerik.Web.UI.AjaxRequestEventArgs e){ if (e.Argument == string.Empty) { RadGrid1.Rebind(); return; } String[] editedItemIds = e.Argument.Trim(':').Split(':'); int i; for (i = 0; i < editedItemIds.Length; i++) { string id = editedItemIds[i]; GridDataItem updatedItem = RadGrid1.MasterTableView.FindItemByKeyValue("id", int.Parse(id)); TextBox txtBox = (TextBox)updatedItem.FindControl("txtBox"); }}updatedItem["id"].Text=115102
updatedItem["tempCol0"] .Text="" updatedItem["tempCol0"] .Controls.Count=0
-------------------------------------------------------------------------------------------------------------------------------
How to get the txtbox control?
Thanks!