Dojo Inline Edit Box

In this section, you will learn how to edit any data. The InlineEditBox provides the better facility for editing any data and save it.

Dojo Inline Edit Box

Dojo Inline Edit Box

        

In this section, you will learn how to edit any data. The InlineEditBox provides the better facility for editing any data and save it. 

Try Online: Inline Edit Box

InlineEditBox describes a widget wrapper that takes a child widget declared in markup and makes it inline-editable. This widget performs the role as a <div> tag when not in edit mode. When you click widget text then it open as an editable mode. In this mode, you edit the text and save it. Whenever you don't save the editable text then it can't be save so, after editing the text you must have to save it. Without editing text you can't be save it. 

 

Here is the code of Program:

<html>
<head>
<title>InlineEdit Demo</title>
  <style type="text/css">
  @import "../resources/dojo.css";
  @import "../dijit/themes/tundra/tundra.css";
  
  </style>

  <script type="text/javascript" src="dojo.xd.js" 
   djConfig="parseOnLoad: true"></script>

  <script type="text/javascript">
 dojo.require("dojo.parser");
 dojo.require("dijit.form.InlineEditBox");
 dojo.require("dijit.form.Textarea");
 </script>
</head>
  <body>
  Edit Please:<br>
  <p id="areaEditable" dojoType="dijit.form.InlineEditBox"
    renderAsHtml="true" autoSave="false">
  <textarea dojoType="dijit.form.Textarea">
  vinod
  </textarea>
  </p> 
  </body>
</html>

Output of Program:

When you click the following text then it open as editable mode:

After editing it, save it:

Then you get:

 

Try Online: