We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

RemoteSaveManager not calling Update URL

I am using Syncfusion.EJ.MVC Version 15.2500.040 (Runtime Version v4.0.30319)

I am having effectively the same problem.  I have a Grid where I allow Edit via a RemoteSaveAdapater as shown below:


@(Html.EJ().Grid<FLWeb.Models.Account>("FlatGrid")

                .Datasource(ds => ds.Json((IEnumerable<object>)ViewBag.datasource).UpdateURL("/FL_Account/Update")

                .InsertURL("/FL_Account/Insert").RemoveURL("/FL_Account/Remove").Adaptor(AdaptorType.RemoteSaveAdaptor))

                .AllowSorting()

               // .AllowPaging()



               .EditSettings(edit => { edit.AllowAdding().AllowDeleting().AllowEditing().EditMode(EditMode.DialogTemplate).DialogEditorTemplateID("#template"); })




                   .ToolbarSettings(toolbar =>

                   {

                       toolbar.ShowToolbar().ToolbarItems(items =>

                       {

                           items.AddTool(ToolBarItems.Search);

                           //items.AddTool(ToolBarItems.Add);

                           //items.AddTool(ToolBarItems.Edit);

                           //items.AddTool(ToolBarItems.Delete);

                           //items.AddTool(ToolBarItems.Update);

                           //items.AddTool(ToolBarItems.Cancel);

                       });

                   })


                               .AllowPaging()

            .PageSettings(page => page.PageSize(15))

            .AllowSorting()

            .AllowGrouping()

            .AllowResizeToFit()

            .AllowFiltering()

            .FilterSettings(filter => { filter.FilterType(FilterType.Excel); })


        // .AllowFiltering()

        .IsResponsive(true)

        // .EnableResponsiveRow(true)

        .Columns(col =>

        {


            col.Field("ClientAcctID").IsPrimaryKey(true).Visible(false).Add();

            col.Field("AccountName").Width(100).Add();

            col.Field("GroupName").Width(100).Add();

            col.Field("PrimaryPhone").Width(60).HeaderText("Phone").Add();

            col.Field("OfficeType").Width(50).Add();

            col.Field("AcctTeamName").Width(50).HeaderText("Team").Add();

            col.Field("City").Width(100).Add();

            col.Field("State").Width(30).Add();

            col.Field("Zip").Width(40).Add();

            col.Field("ActiveAcct").Width(30).Add();




        }

        )


The grid uses a Dialog Editor template where like Luis, it works somewhat reliabily on the first load of the view.  In other words if I go to the View and I edit record #1, I can see the controller method being called, and data being handled on the server etc. However, if I attempt to edit the same record a second time, the controller action is never called.  I likewise don't see any errors on the client (browser debugging tools), which leaves me with little I can troubleshoot.  

Please advise!



1 Reply

MS Mani Sankar Durai Syncfusion Team October 2, 2017 07:13 AM UTC

Hi Scott, 

Thanks for contacting Syncfusion support. 

We have analyzed your query and we are not able to reproduce the reported issue.  We have also prepared a sample based on the code example given and that can be downloaded from the below link 
We have also checked the continuous editing for the same and also for the different row. 
If you still face the issue please get back to us with the following details, 
1.       Share the screenshot of the issue.  
2.       Share the screenshot of how the post has been processing in network tab and what is response from that. 
3.       Share the controller page. 
4.       Share the hosted site. 
5.       If possible please reproduce the issue in the above attached sample. 
The provided information will help us to analyze the issue and provide you the response as early as possible. 

Regards, 
Manisankar Durai. 


Loader.
Live Chat Icon For mobile
Up arrow icon