ASP.NET MVC editing fast a property
There are some moments when you want to fast edit a property ( like a status or a name) and you do not want to load the entire “Edit” form for this.More, you are in an edit formula and do not want to add a form.
So here is the solution in ASP.NET MVC with jquery-1.4.2.min , jquery-ui-1.8.1.custom.min for a modal dialog and some controllers. The most difficult were the javascript, so I let to the final.
We will be editing the name for an employee in 4 steps.The most difficult to understand is the step 4(javascript) , however, it can be re-used with any other object- so you can put it in a common js file.
Step 1
create a view for editing the name , named FastEditEmp
1 2 3 4 5 | <%@ Control Language= "C#" Inherits= "System.Web.Mvc.ViewUserControl<BusinessLogic.Employee>" %> <!-- edit inline the name --> <%= Html.HiddenFor(Model=>Model.ID) %> <%= Html.LabelFor(model=>model.Name) %> <%= Html.EditorFor(model=>model.Name) %> |
Step 2
Create the controllers and verify it works – at least the get action .
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | public ActionResult FastEditEmp( int id) { var emp=EmployeeList.LoadFromID(id); return View(emp); } [HttpPost] public ActionResult FastEditEmp(BusinessLogic.Employee emp) { try { var dbid = EmployeeList.LoadFromID(emp.ID); UpdateModel(dbid); dbid.Save(); return new JsonResult() { Data = new { ok = true , message = "succes" } }; } catch (Exception ex) { //TODO : log return new JsonResult() { Data = new { ok = false , message = "error : " + ex.Message } }; } } |
Step 3
Create the hyperlink to edit the name of an employee (emp) :
<a href=’javascript:EditModal(<%= emp.ID%>,”<%=Url.Action(“FastEditEmp”,new {id=emp.ID}) %>”)’>Edit name</a>
Step 4
This is the most difficult one, the javascript. However, more of the code is common no matter what you want to edit fast modal :
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | var wait = '<%= ResolveUrl("~/Content/Images/wait.gif") %>' ; function EditModal(empID,url) { // load a please wait dialog var $dialog1 = $( '<div></div>' ) .html( "Loading data <br /> <img src='" + wait + "'></img>" ) .dialog({ autoOpen: false , title: 'please wait' }); $dialog1.dialog( 'open' ); // so the please wait dialog was shown to the user. Now load the content of the action specified in url $.get(url, { ID: empID }, function (txt) { var $dialog = $( '#dialog' ); $dialog.html( '' ); $dialog.html(txt) .dialog({ autoOpen: false , title: 'Edit' , modal: true , show: 'blind' , hide: 'explode' , closeOnEscape: false , buttons: { "Close" : function () { //just cleanup - no saving var allInputs = $( ":input:not(:button)" ); var ser = allInputs.serialize(); allInputs.remove(); allInputs.empty(); $( this ).dialog( "close" ); $( this ).dialog( 'destroy' ); }, "Save" : function () { //now saving data : serializing and posting var allInputs = $( ":input:not(:button)" ); var ser = allInputs.serialize(); allInputs.remove(); allInputs.empty(); window.alert(ser); -- debug mode $( this ).dialog( 'close' ); $( this ).dialog( 'destroy' ); //saving data by posting to same url! $.post(url, ser, function (text) { $( this ).dialog( "close" ); $( this ).dialog( 'destroy' ); if (text.ok) { window.alert( "Saved - you can change here the display id with jquery" ); window.location.reload( true ); } else { window.alert(text.message); } } ); } } }); $dialog1.dialog( 'close' ); //closing the wait dialog $dialog.dialog( 'open' ); // show main editing dialog }); } </script> |
As always, please find here the saving modal files. Please execute first the emp.sql file, then modify the connection string into the web.config .
could u please define as i am new to ajax and jquery that, what following line means here :
var allInputs = $(“:input:not(:button)”);
33 var ser = allInputs.serialize();
34 allInputs.remove();
35 allInputs.empty();
36 $(this).dialog(“close”);
line 1 : get all inputs that are not buttons
line 33 : serialize into a string
line 34/35: remove from DOM (GUI, if you prefer)
line 36 : close the dialog with the form
Hi Andrei Ignat,
your posts are very helpful. but i have question for this post, i wonder if how do i edit an image or file that i uploaded to server, and after serialize all input value into a string, whether how to specific which value fields for right properties in entity ? And finally when update successfully how to update or refresh to load new information on table list ? thanks in advance
It can be userfull to you: http://www.matthidinger.com/archive/2011/03/02/Progressive-enhancement-in-MVC-3-with-the-help-of-custom.aspx
There is another way here: http://stackoverflow.com/questions/8541821/how-to-simplify-my-statefull-interlaced-modal-dialogs-in-asp-net-mvc