VOOZH about

URL: https://www.geeksforgeeks.org/jquery/jqwidgets-jqxgrid-batcheditable-property/

⇱ jQWidgets jqxGrid batcheditable Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

jQWidgets jqxGrid batcheditable Property

Last Updated : 23 Jul, 2025

jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxGrid is used to illustrate a jQuery widget that shows data in tabular form. Moreover, it renders full support for connecting with data, as well as paging, grouping, sorting, filtering, and editing.

The batcheditable property is used to activate or deactivate the batch editing feature of the displayed jqxGrid. However, the editable property must be set to true in order to activate this feature. It is of Boolean type and its default value is false.

Syntax:

  • Set thebatcheditable property:
$('Selector').jqxGrid({ batcheditable: true });
  • Return the batcheditable property:
var batcheditable = $('Selector').jqxGrid('batcheditable');

Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder.

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
<script type="text/javascript" src="jqwidgets/jqxdata.js"></script>
<script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="jqwidgets/jqxscrollbar.js"></script>
<script type="text/javascript" src="jqwidgets/jqxmenu.js"></script>
<script type="text/javascript" src="jqwidgets/jqxgrid.js"></script>
<script type="text/javascript" src="jqwidgets/jqxgrid.selection.js"></script>

Example 1: The below example illustrates the jqxGridbatcheditable property in jQWidgets.

Output:

👁 Image
 

Example 2: The below example illustrates the jqxGrid batcheditable property in jQWidgets by setting its value as "false".

Output:

👁 Image
 

Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-api.htm?search=

Comment

Explore