Click here to Skip to main content
15,867,330 members
Articles / Web Development / HTML
Article

Light Speed Inline Editing Using ASP.NET AJAX and Web Services: Part I

Rate me:
Please Sign up or sign in to vote.
4.81/5 (21 votes)
6 Apr 2008CPOL6 min read 139.5K   4.2K   95   16
JavaScript + AJAX solution for inline editing in a grid.

Screenshot - grid.gif

Introduction

If you ask people what the most important thing that they want for web based application UIs, most of them will answer "I want to edit data really fast, like in Excel!" That is a tough request. It means that the person wants to click on a row, edit some data, then click on another row, and have all the data saved into a database. We've found a solution for this during TargetProcess v.2.6 development. TargetProcess is a great agile project management software (if you are not aware ;)

Problem

The ASP.NET framework provides inline editing functionality in GridView. But sometimes, you get into situations when you cannot use this functionality:

  • You cannot use it with a disabled View State.
  • Performance is really bad. When you click a button to switch the row into edit state, a post back to the server will be initiated. The post back will happen when you save or cancel the edit mode as well. Even if you put your grid into an UpdatePanel, AJAX.NET still will update the whole grid instead of just one row, and the size of the date in the post back remains almost the same (and large).

With bad performance, it will not be like Excel, right? So, we have to look for a solution that:

  • Will not initiate post back to the server
  • Will work with a disabled view state
  • Will be as fast as Excel (at least, less than a second to do an action)

Solution

The Inline Edit Controller (IEC) is JavaScript solution that resolves all our problems (you will see it really soon). It has the following advantages:

  • It's a cross-platform solution, you can use it in any environment: ASP, ASP.NET, PHP, JSP etc.
  • It's a cross-browser solution.
  • It's a very extensible solution; it's pretty simple to extend the basic behavior by adding your custom handlers.
  • It can be easily integrated into existing applications without almost any rework. You can define custom saving methods to put edited values into a database.

Basic principles

IEC is a plain JavaScript solution that allows editing rows in a grid. In order to have an editable row, you should mark the row in some specific manner. Let's call this stuff "Inline Edit Panel". It contains a button that enables inline editing as well as buttons that save changes and cancels editing. In fact, the better way to go is to enable editing on double click, and cancel it on Escape key. That will be shown in more advanced examples. So far, we have simple buttons:

ASP.NET
<asp:GridView CellPadding="0" CellSpacing="0" Width="1px" 
       GridLines="none" runat="server" AllowSorting="false" 
       AutoGenerateColumns="false" ID="uxOrders">
  <asp:TemplateField>
       <ItemTemplate> 
            <span runat="server" style="white-space: nowrap" 
                  class="inlineEditIcon" inlineeditattribute="true" 
                  rowid='<%# Eval("OrderID")%>'>
              <img runat="server" action="edit" 
                   title="Inline Edit" src="~/img/edit.gif" />
              <img runat="server" style="display: none" 
                   action="save" title="Save" src="~/img/save.gif" /> 
              <img runat="server" style="display: none" 
                   action="cancel" title="Cancel" src="~/img/cancel.gif" />
          </span>
     </ItemTemplate>
</asp:TemplateField>
...

Cells that are going to be editable must be located in a specific place holder as well. Let's call this stuff "Edit Area".

HTML
<asp:TemplateField HeaderText="Freight">
     <ItemTemplate>
          <span id="FreightIdPrefix<%# Eval("OrderID")%>">
        <asp:Label ID="Label1" runat="server" 
                   Text='<%#Eval("Freight")%>'></asp:Label>
        </span>
    </ItemTemplate>
</asp:TemplateField>

As you can see, the "Inline Edit Panel" has three buttons, with an extra "action" attribute. Each action attribute fires the corresponding event. The IEC handles all these events and makes the corresponding changes in the DOM. Let's review the editing process now.

1. User clicks the Edit button

  • At this stage, the row switches to an editable state, and input and select boxes are appended to "Edit Areas".
  • The usual text labels become invisible. It means that the Freight label in the code above becomes invisible, and the input text field is added to the span with id="FreightIdPrefix777".

2. User changes some values and clicks the Save button

  • At this stage, IEC extracts all the values from editable fields (input, select, other if any).
  • Replace the label texts with new values from the editable fields.
  • Create a JavaScript object that holds the edited (new) values.
  • It's time to save changes into the database. IEC has no idea how to save new data, so it just passes the JavaScript object that holds the new values into the saving method.

3. User pushes the Cancel button

  • At this stage, IEC removes editable fields ("input", "select").
  • Labels become visible again.

Usage example

The idea looks really simple. But maybe, the solution is hard to use, who knows… Only a real example can help us judge the solution.

Let's take an ASP.NET example with:

  • A GridView control to present the data.
  • A Web Service to retrieve the data and save the modified data.
  • AJAX.NET to generate web methods that can be used from JavaScript.
  1. For example, we have a pretty simple Order class. We want to show all the orders in a grid.

    Screenshot - orderCRC.jpg

  2. The GridView initialization is a no-brainer as well. OrderService is a class that can retrieve orders from the database (we don't care how; maybe the GetAllOrders method uses NHibernate, or maybe plain old SQL).
    C#
    protected override void OnLoad(EventArgs e)
    {
      if (!IsPostBack)
      {
         OrderService orderService = new OrderService();
         Order[] orders = orderService.GetAllOrders();
         uxOrders.DataSource = orders;
         uxOrders.DataBind();
    ...
  3. IEC mapping. As mentioned above, we should add columns with inline editing controls (Inline Edit Panel).
    ASP.NET
    <asp:TemplateField>
          <ItemTemplate> 
           <span id="Span1" runat="server" style="white-space: 
                 nowrap" class="inlineEditIcon" inlineeditattribute="true"  
              rowid='<%# Eval("OrderID")%>'> 
              <img id="Img1" runat="server" action="edit" 
                   title="Inline Edit" src="~/img/edit.gif" /> 
              <img id="Img2" runat="server" style="display: none" 
                   action="save" title="Save" src="~/img/save.gif" />
              <img id="Img3" runat="server" style="display: none" 
                   action="cancel" title="Cancel"    
              src="~/img/cancel.gif" />                       
            </span> 
         </ItemTemplate> 
    </asp:TemplateField>

    And insert all the required "Edit Areas".

    HTML
    <asp:GridView CellPadding="0" CellSpacing="0" Width="1px" 
                  GridLines="none" runat="server" AllowSorting="false" 
                  AutoGenerateColumns="false" ID="uxOrders">
          <Columns>
              <asp:TemplateField>
                   <ItemTemplate> 
                       <span priorityname='<%#Eval("Priority")%>' 
                             id="PriorityIdPrefix<%# Eval("OrderID")%>">
                         <span>
                             <%#GetPriorityHTML(Container.DataItem)%>
                         </span
                   </span>
                 </ItemTemplate>
             </asp:TemplateField>
             <asp:TemplateField HeaderText="Freight">
                   <ItemTemplate>
                       <span id="FreightIdPrefix<%# Eval("OrderID")%>">
                       <asp:Label ID="Label1" runat="server" 
                            Text='<%#Eval("Freight")%>'></asp:Label>
                    </span>
                </ItemTemplate>
             </asp:TemplateField>
              <asp:TemplateField HeaderText="Ship Name">
                    <ItemTemplate>
                           <span id="ShipNameIdPrefix<%# Eval("OrderID")%>">
                            <asp:Label ID="Label1" runat="server" 
                                 Text='<%#Eval("ShipName")%>'></asp:Label>
                       </span>
                 </ItemTemplate>
             </asp:TemplateField> 
    ...

    As you can see, the "Edit Areas" have a composite ID that consists of two parts: "Edit Area prefix + itemID". Such an ID is required to make each row unique.

  4. Now, we should create an IEC instance, and the EditAreaSettings instances (see below) for each "Edit Area".
    JavaScript
    var editAreasSettings = new Array();
    //ShipName is a property of Order class
    //ShipNameIdPrefix is an id of span element
    //(EditArea of ShipName property)   
    var shipNameEditAreaSettings = new EditAreaSettings("ShipName", 
                                   "ShipNameIdPrefix",null, true);
    editAreasSettings.push(shipNameEditAreaSettings);
     
    var freightSettings = new EditAreaSettings("Freight","FreightIdPrefix");
    freightSettings.onSelectValue = onSelectFreightValueHandler;
    editAreasSettings.push(freightSettings);
     
    var prioritySettings = new EditAreaSettings("Priority",
                           "PriorityIdPrefix","uxPriorities");
    prioritySettings.onRenderEditedValue = onRenderPriorityValue; 
    prioritySettings.onSelectValue = onSelectPriorityValue;
    editAreasSettings.push(prioritySettings);
    
    var inlineEditController = new InlineEditController('<%=uxOrders.ClientID%>', 
                               editAreasSettings, onSaveEventHandler, true);

    EditAreaSettings( areaName, areaPrefix , dataSourceControlID, isFocused)

    Arguments:

    • areaName – used by IEC to map the edited values to the retObj that is passed into onSaveEventHandler.
    • areaPrefix – used by IEC to find the edit area.
    • dataSourceControlID – data source control ID that has a collection of predefined values.
    • isFocused - boolean value that specifies whether the edit area will have a focus.

    onRenderPriorityValue and onSelectPriorityValue are custom handlers that are implemented outside of IEC. It is impossible to implement all the cases of editing, and for specific situations, you have to create custom handlers. For example, the Priority column is an image. When the row is in the usual state, it shows the priority icon, but when the row is in an editable state, it should show the select box.

    Screenshot - priority.jpg

    The code of onRenderPriorityValue and onSelectPriorityValue are out of the scope for this article; it will be described in Part II (architecture, extensibility, and stuff like that).

  5. We are getting closer to the final. Let's add the saving handler. IEC is quite agnostic to data saving, and does not care how you will implement that. All it needs is a method call that does all the job.
    JavaScript
    function onSaveEventHandler(retOb)
    { 
        retObj.OrderID  = retObj.itemID;
        TargetProcess.DaoTraining.BusinessLogicLayer.OrderService.UpdateOrder(retObj,
                                           onRequestComplete,
                                           onErrorRequest);
    }

    The UpdateOrder method will be fired on the save event. It has only one input parameter, retObj, which holds all the edited values. IEC maps the edited values into retObj using the keys from EditAreaSettings (for example, shipName, Freight). Fortunately, I mapped the "Edit Areas" for IEC to be consistent with the Order class, except retObj.itemID that is created by IEC. As a result, retObj can be casted to the Order class. I had to do one extra assignment to make retObj completely consistent with Order.

    JavaScript
    retObj.OrderID = retObj.ItemID

    The onSaveEventHandler handler is completely consistent with the web method.

    C#
    [ScriptService]
    public class OrderService : WebService
    {
    
        [WebMethod]
        public string UpdateOrder(Order order)
        {
            OrderDao OrderDao = DaoFactory.GetDaoFactory().GetOrderDao();
            bool isUpdated = OrderDao.UpdateOrder(order);
            if (isUpdated)
                return "The order '" + order.OrderID + "' is successfully updated.";
            else
                return "Unable to find order '" + order.OrderID + "'.";
        }
    …

I'm using the web service to save the order, but it's not necessary. It's a pretty flexible approach that allows other mechanisms to save the data.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Belarus Belarus
Andrew Golik is a software professional working in Minsk, Belarus.
He enjoys design infrastructures based on object oriented paradigm. His programming experience includes ASP, ASP.NET, .NET, COM, JAVA, PHP, DHTML, AJAX, blah blah blah....

Andrew Golik's Blog

Comments and Discussions

 
GeneralWow very impressive! Pin
Kyryll99930-Aug-10 13:39
Kyryll99930-Aug-10 13:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.