Hi,
I am new to the whole web development platform (I come from winforms background). I am trying to develop a Master/Detail user control for DotNetNuke using WebDataGrid for the Master as well as the Detail grid. The examples that I saw do not use a webdatagrid as the detail. I would appreciate it if anyone can post a simple sample.
Thanks,
Steve
<script type="text/javascript"> function AJAXResponseHandler(sender, args) { var Properties = args.get_gridResponseObject().AdditionalProperties; var allowFiltering = Properties.allowFiltering; // If this handler is raised in response of completed response of // RowSelectionChanged event of the grid, trigger an AJAX postback //by the updatePanel and filter the DetailGrid if (allowFiltering == true) { var b = document.getElementById('<%=Button1.ID %>'); b.click(); } } </script>