Hi Team
My English is not that good sorry.
I popluate my radtreeview from a sqldatasource works 100%.
Now on the right click contextmenus i want to open a radwindow to add data to sql database to update the treeview nobes
I use this code to open a Radwindow
How can i trigger this call from one of the right click contextmenu list
Herman
My English is not that good sorry.
I popluate my radtreeview from a sqldatasource works 100%.
Now on the right click contextmenus i want to open a radwindow to add data to sql database to update the treeview nobes
I use this code to open a Radwindow
RadWindow window1 = new RadWindow(); window1.NavigateUrl = "frm_Catalogue_Structure.aspx"; window1.VisibleOnPageLoad = true; window1.Width = 400; window1.Height = 500; this.form1.Controls.Add(window1);
How can i trigger this call from one of the right click contextmenu list
Herman