| //doing some server side stuff here. RadWindowManager man = (RadWindowManager)Master.FindControl("WindowsManager"); |
| RadWindow win = new RadWindow(); |
| win.NavigateUrl = "path"; |
| win.VisibleTitlebar = true; |
| win.VisibleOnPageLoad = true; |
| man.Windows.Add(win); |
Hi Veli,
I am using the Telerik RadGrid in our application,
our requirement is to Bind the columns and data to the grid dynamically .
including this based on the parent grid's selected row i need to show the related say 3tables of data either using Detai table grid or a NestedView template
I will describe the issues i faces on using these two options in breif now and also attached the screenshots for the related issues
1.Using Detail Table Data
Adding columns and binding data is no problem...
a). First thing is the appearance
b). Is it more flexible to have add,edit and one more button to redirect to some other page funtionalities with in all the GridTableViews.
passing the selected row as parameter
c) . If i resize the column extensively the RadGrid control automatically intiates the scroll
option where i fill the screen gets so clumsy to differentiate the Parent grid and the Gridtableview
2.Using Nested View template
In this template i took a panel and a tabstrip with in that panel.that tabstrip consists of
three tabs for the three different related tables as explained above.
Using this also adding columns and binding the data is no problem
a). The main problem is the columns and the data are not getting binded for the first click of expand column
Inorder to over come this problem i used the HierarchyLoadMode as Client for this even for the first expand column click also data is gettind binded.
but if i click for the next page of parent grid,then i am not able to view get the data binded to the child grids of the tabcontrol
b). In this also i need flexibility to have add,edit and even to redirect to some other page from the childgrids passing the selected row as parameter
Now coming to an end , I need the best solution among the two and also the solutions to over come the problems
Thanks in Advance
chaitanya.E
chaitanya.elluru@cosmonetsolutions.com

AllowAutomaticLoadOnDemand="true"for the GridDropDownColumn, but it seems these examples simply do a lazy load of the list and don't allow for auto complete type lookup from the user.
OnItemsRequested
option used to query the database with the users typed in value as the search parameter.<telerik:RadNumericTextBox runat="server" ID="txbOCCCplafond" SkinID="txbEntier" NumberFormat-decimalSeparator=',' MinValue="0" />
As you can see the decimal separator is the comma (french format).
I would like to allow the user to press ',' or '.' (as a result the '.' becomes ',')
For example setting NumberFormat-DecimalSeparator= ',.'
Hope you understand my poor english
Could you help me ?
<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All" Skin="Web20" DecorationZoneID="ContentPlaceholder1" /> <h1> Search Attendee Records</h1> <p> Enter a value or a partial value in any of the fields below. Your search will return all matches or partial matches. For example if you enter "A" for last name, your search will return all names beginning with "A".</p> <asp:Panel ID="Panel1" runat="server" GroupingText="Search Data" Width="450px"> <telerik:RadTextBox ID="txtRegistrantID" runat="server" Label="RegistrantID" Width="400px" Wrap="False"> </telerik:RadTextBox><br /> <telerik:RadTextBox ID="txtLastName" runat="server" Label="Last Name" Width="400px" Wrap="False"> </telerik:RadTextBox><br /> <telerik:RadTextBox ID="txtFirstName" runat="server" Label="First Name" Width="400px" Wrap="False"> </telerik:RadTextBox><br /> <telerik:RadTextBox ID="txtCompany" runat="server" Label="Company" Width="400px" Wrap="False"> </telerik:RadTextBox><br /> <telerik:RadTextBox ID="txtCity" runat="server" Label="City" Width="400px" Wrap="False"> </telerik:RadTextBox><br /> <telerik:RadButton ID="btnSubmit" runat="server" Text="Submit"> </telerik:RadButton> </asp:Panel>