Hi all,
I've created a RadGrid using Client-Side Databinding according to this example:
http://www.telerik.com/help/aspnet-ajax/grid-client-side-binding.html
This is the declaration of my RadGrid:
When I click the Add New Row or Edit button, the Grid calls my webservice, but besides that, nothing happens. No postback or anything else.
Am I missing something here? Is there a way to show the PopUp-form through client-side and should I do that?
Kind regards,
Jesse
I've created a RadGrid using Client-Side Databinding according to this example:
http://www.telerik.com/help/aspnet-ajax/grid-client-side-binding.html
This is the declaration of my RadGrid:
<telerik:RadGrid ID="Grid" runat="server" Skin="Metro" AllowAutomaticInserts="true" AllowAutomaticUpdates="true" AllowPaging="true" AllowMultiRowSelection="true" PageSize="25" EnableEmbeddedSkins="true"> <MasterTableView CommandItemDisplay="Top" EditMode="PopUp" ClientDataKeyNames="Id" DataKeyNames="Id" InsertItemPageIndexAction="ShowItemOnCurrentPage"> <Columns> <telerik:GridEditCommandColumn /> <telerik:GridBoundColumn DataField="Id" HeaderText="Id" UniqueName="Id" Display="false"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Name" HeaderText="Name" UniqueName="Name"> </Columns> </MasterTableView> <PagerStyle AlwaysVisible="true"> </PagerStyle> <ClientSettings EnableRowHoverStyle="true"> <DataBinding Location="~/services/service.asmx" SelectMethod="List" SelectCountMethod="ListCount"> </DataBinding> <Selecting AllowRowSelect="true" /> </ClientSettings></telerik:RadGrid>When I click the Add New Row or Edit button, the Grid calls my webservice, but besides that, nothing happens. No postback or anything else.
Am I missing something here? Is there a way to show the PopUp-form through client-side and should I do that?
Kind regards,
Jesse
