Hi Guys, I want to use the WebDialog box to display a record. i.e the users clicks a row in the WebGrid and that record is displayed in the WebDialog - whats the best way (if its possible) to achieve this - Thanks Marc
Can the following code be done within InitializeRow of the UltraWebGrid:
<a href="#" onclick="editRow('<%# Eval("EmployeeID") %>')">Edit In Window</a>
A quick note about the example posted above. If you want to set the contentUrl of the WebDialogWindow through javascript, you have to first set a contentUrl on the WebDialogWindow on the server-side. You can use "about:blank" if you initially want the WebDialogWindow to show a blank window.
WebDialogWindow.ContentPane.ContentUrl="about:blank"