Ignite UI API Reference

ui.igTextEditor

ui.igTextEditor_image

The igTextEditor control provides support for handling text user input. Options include specifying null text, plain text, password, and multiline modes. Further information regarding the classes, options, events, methods and themes of this API are available under the associated tabs above.

The igTextEditor control extends the functionality of the igEditor control. For more details on the igTextEditor control API, refer to the base igEditor control’s API documentation.

The following code snippet demonstrates how to initialize the igTextEditor control.

Click here for more information on how to get started using this API. For details on how to reference the required scripts and themes for the igTextEditor control read, Using JavaScript Resources in Ignite UI and Styling and Theming Ignite UI.

Code Sample

<!doctype html>
 <html>
 <head>
     <!-- Infragistics Combined CSS -->
     <link href="css/themes/infragistics/infragistics.theme.css" rel="stylesheet" type="text/css" />
     <link href="css/structure/infragistics.css" rel="stylesheet" type="text/css" />
     <!-- jQuery Core -->
     <script src="js/jquery.js" type="text/javascript"></script>
     <!-- jQuery UI -->
     <script src="js/jquery-ui.js" type="text/javascript"></script>
     <!-- Infragistics Combined Scripts -->
     <script src="js/infragistics.core.js" type="text/javascript"></script>
     <script src="js/infragistics.lob.js" type="text/javascript"></script>
     <script type="text/javascript">
           $(function () {
               $("#textEditor").igTextEditor({
                   width: 160,
                   nullText: "Enter Text"
               });
           });
      </script>
  
 </head>
 <body>
    <input id="textEditor" />
  </body>
 </html>

Related Samples

Related Topics

Dependencies

jquery-1.4.4.js
jquery.ui.core.js
jquery.ui.widget.js
jquery.ui.datepicker.js
infragistics.util.js

Inherits

Copyright © 1996 - 2025 Infragistics, Inc. All rights reserved.

#