function ExpandItem() { var panelbar = <%= RadPanelBar1.ClientID %>; var item = panelbar.FindItemByText(text); if (item) { item.Expand(); } else { alert("Item with text '" + text + "' not found."); } }var panelbar = $find("<%= RadPanelBarUserInfo.ClientID %>");var item = panelbar.FindItemByText("AccountInformation");<telerik:GridBoundColumn FilterControlWidth="80px" ShowSortIcon="true" Groupable="false" DataField="Title" SortExpression="Title" ItemStyle-Width="23%" HeaderStyle-Width="23%" HeaderText="<%# getValue("Title") %>" ItemStyle-Font-Names="tahoma" ItemStyle-Font-Size="8" HeaderStyle-Font-Size="8" HeaderStyle-Font-Names="tahoma"><HeaderStyle Font-Names="tahoma" Font-Size="8pt" Width="23%"></HeaderStyle><ItemStyle Font-Names="tahoma" Font-Size="8pt" Width="23%"></ItemStyle> </telerik:GridBoundColumn>Hi,
I would like to do have the almost the same functionality as This.
But both of my Dialog.aspx and Calling Page (i.e. Default.aspx) uses Radgrid Edit Templates (i.e. MasterTableView EditMode="EditForms"). The data source from both pages are not the same. The value’s I would like to pass from Dialog.aspx are: 1) An Edit Template Text value and 2) A RadGrid Dataitem calculated sum column (from footer).
Is it possible to pass these from Dialog.apsx into Default.aspx form’s regular asp TextBox or RadText Box (for #1) or Rad Numeric Text Box (for #2) ? I am using RadControls for ASP.NET AJAX Q2 2010, Vstudio 2008 SP1.
Thanks
GC_0620
function ShowSearchCustomerDialog() {
var wnd = radopen('/_layouts/G.Ga.SharePoint/SC.aspx');
var width = 800;
var height = 600;
var left = parseInt((screen.availWidth / 2) - (width / 2));
var top = parseInt((screen.availHeight / 2) - (height / 2));
wnd.setSize(width,height);
wnd.MoveTo(left,top);
}
Calling at :
<
div class="blok-head">
<h3 style="float:left;">
<asp:Label ID="businesspartnerLabel" runat="server" />
</h3>
<asp:PlaceHolder ID="selectCustomerPanel" runat="server">
<a class="select-customer" href="javascript:ShowSearchCustomerDialog();" title="Select customer">Select customer</a>
</asp:PlaceHolder>
</div>
<
telerik:RadDatePicker ID="txtEffectiveDate" runat="server" Width="150px" SelectedDate='<%# Bind("EffectiveDate") %>'></telerik:RadDatePicker>