or
heya.. trying to determine how to use a radcofirm popup to confirm deletion of a record from a formview.
this works fine as a standard confirm...
this does not
return the following error:
'radconfirm' is not a member of 'ASP.ctrls_ctrlName_ascx'.
I have used the following as a guideline http://www.telerik.com/demos/aspnet/prometheus/Window/Examples/BrowserDialogBoxes/DefaultCS.aspx
My sloppy code:
(note that the sample buttons at the bottom work fine in my page)
| <asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Delete" |
| Text="Delete" OnClick="radconfirm('Are you sure?'); return false;"></asp:LinkButton> |
| <asp:LinkButton ID="NewButton" runat="server" CausesValidation="False" CommandName="New" |
| Text="New"> |
| </asp:LinkButton> |
| </ItemTemplate> |
| </asp:FormView> |
| <telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Sunset"> |
| </telerik:RadWindowManager> |
| |
| <button style="width: 150px; margin-bottom: 3px;" onclick = "radconfirm('Are you sure?');" class="button">show CONFIRM BOX</button><br/> |

| <?xml version="1.0" encoding= "utf-8" ?> |
| <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > |
| <siteMapNode url="http://www.telerik.com" title="Telerik" description="Telerik home page"> |
| <siteMapNode url="http://www.telerik.com/radcontrols" title="Telerik RadControls for ASP.NET" description ="Telerik RadControls for ASP.NET" > |
| <siteMapNode url="http://www.telerik.com/radeditor" title="Telerik RadEditor" description="Telerik RadEditor control"/> |
| </siteMapNode> |
| <siteMapNode url="http://www.telerik.com/radnavigation" title="Telerik RadNavigation controls" description ="Telerik RadNavigation controls" /> |
| </siteMapNode> |
| </siteMap> |
However paging does not work. If I click on a page #, the loading messages shows up in the statusbar of the grid and the page does not move.
This seems like a pretty basic setup to me.
Thanks,
Nick H