How to enter editing state using function in IText using FabricJS?

In this tutorial, we are going to learn about how to enter editing state using function in IText using FabricJS. The IText class was introduced in FabricJS version 1.4, extends fabric.Text and is used to create IText instances. An IText instance gives us the freedom to select, cut, paste or add new text without additional configurations. There are also various supported key combinations and mouse/touch combinations which make text interactive which are not provided in Text.

Textbox, however, which is based on IText allows us to resize the text rectangle and wraps lines automatically. This is not true for IText as height is not adjusted based on the wrapping of lines. We can manipulate our IText object by using various properties. Likewise, we can enter the editing state by using the enterEditing method.

Syntax

enterEditing(): fabric.IText

Parameters

The enterEditing() method does not accept any parameters and returns the IText instance for method chaining.

Example 1: Without Using the enterEditing Method

Let's see a code example to see how the IText object looks like when the enterEditing method is not used.

<!DOCTYPE html>
<html>
<head>
   <!-- Adding the Fabric JS Library-->
   <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script>
</head>
<body>
   <h2>Without using the enterEditing method</h2>
   <p>You can see that the editing mode is off</p>
   <canvas id="canvas"></canvas>

   <script>
      // Initiate a canvas instance
      var canvas = new fabric.Canvas("canvas");
      canvas.setWidth(document.body.scrollWidth);
      canvas.setHeight(250);

      // Initiate an itext object
      var itext = new fabric.IText("Add sample text here.", {
         width: 300,
         left: 60,
         top: 70,
         fill: "red",
      });

      // Add it to the canvas
      canvas.add(itext);
   </script>
</body>
</html>

Example 2: Using the enterEditing Method

Let's see a code example to see how the IText object looks like when the enterEditing method is used to enter editing state. In this case, our itext object will now be in editing mode as the cursor is there.

<!DOCTYPE html>
<html>
<head>
   <!-- Adding the Fabric JS Library-->
   <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script>
</head>
<body>
   <h2>Using the enterEditing method</h2>
   <p>You can see that the editing mode is on</p>
   <canvas id="canvas"></canvas>
   
   <script>
      // Initiate a canvas instance
      var canvas = new fabric.Canvas("canvas");
      canvas.setWidth(document.body.scrollWidth);
      canvas.setHeight(250);

      // Initiate an itext object
      var itext = new fabric.IText("Add sample text here.", {
         width: 300,
         left: 60,
         top: 70,
         fill: "red",
      });

      // Add it to the canvas
      canvas.add(itext);

      // Using enterEditing method
      itext.enterEditing();
   </script>
</body>
</html>

Key Points

  • The enterEditing() method programmatically activates editing mode on an IText object
  • When editing mode is active, a text cursor appears and users can type directly
  • This method is useful when you want to immediately focus on a text element for editing
  • The method returns the IText instance, allowing for method chaining

Conclusion

The enterEditing() method provides a programmatic way to activate text editing mode in FabricJS IText objects. This is particularly useful for creating interactive text editors where you want to immediately focus users on specific text elements for editing.

Updated on: 2026-03-15T23:19:00+05:30

669 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements