VOOZH about

URL: https://www.geeksforgeeks.org/jquery/jqwidgets-jqxgrid-deleterow-method/

⇱ jQWidgets jqxGrid deleterow() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

jQWidgets jqxGrid deleterow() Method

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 deleterow() method is used to delete a row or numerous rows. It renders a boolean value.

Syntax:

$('Selector').jqxGrid('deleterow', rowIds);

Parameters:

  • rowIds: It is the stated row ids that can be returned from getrowid() method. It is of type string or number or an array.

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 jqxGrid deleterow() method in jQWidgets.

Output:

👁 Image
 

Example 2: The below is another example that illustrates the jqxGrid deleterow() method in jQWidgets.

Output:

👁 Image
 

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

Comment

Explore