setPostalAddressInRed() {
var
isChecked = document.getElementById(
'AddressInactiveCheckBox'
).checked;
var
postState = document.getElementById(
'StatesComboBox'
);
if
(isChecked ==
true
) {
postState.style.color =
'red'
;}
else
{
postState.style.color =
'black'
;
}
}
//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