mage / grid
Magento 2 custom React GridJS integration
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 4
Forks: 3
Open Issues: 0
Language:JavaScript
Type:magento2-module
README
A powerful and flexible grid system for Magento 2 that provides an easy way to create and manage data grids in the admin panel.
Features
- Flexible Data Sources: Support for both collection-based and SQL-based data sources
- AJAX Support: Built-in AJAX functionality for smooth data loading
- Customizable Fields: Easy field configuration and management
- Built-in Filtering: Advanced filtering capabilities
- Pagination: Automatic pagination handling
- Frontend & Backend Support: Works in both frontend and backend contexts
- Responsive Design: Mobile-friendly grid layout
- Customizable Templates: Easy to override and customize templates
Why Our Grid is Better Than Magento's Legacy Grid
Our grid implementation offers several advantages over Magento's legacy grid system:
-
Modern Technology Stack:
- Uses GridJS, a modern JavaScript grid library
- Built with Preact for efficient rendering
- Supports modern JavaScript features and async/await
-
Better Performance:
- Lighter weight than Magento's legacy grid
- Faster rendering and data loading
- Reduced server load with client-side processing
-
Enhanced Flexibility:
- Easy to customize columns and cells
- Support for both collection and SQL-based data sources
- Simple integration with Magento's UI components
-
Improved Developer Experience:
- Cleaner code structure
- Better separation of concerns
- Easier to extend and maintain
-
Better User Experience:
- Smoother interactions
- More responsive interface
- Better mobile support
-
Advanced Features:
- Built-in AJAX support
- Advanced filtering capabilities
- Custom cell renderers
- Dynamic data loading
-
Integration with Magento:
- Seamless integration with Magento's admin panel
- Support for Magento's UI components
- Compatible with Magento's theming system
Why This Grid is AI-First
Mage Grid is designed from the ground up to be AI-first. This means:
- The codebase is structured for easy understanding and modification by AI coding assistants (like Cursor, GitHub Copilot, or ChatGPT).
- Naming conventions, modularity, and documentation are optimized for AI-driven code generation and extension.
- The grid is built to be easily extensible and customizable with minimal manual intervention, making it ideal for rapid prototyping and iterative development with AI tools.
What Makes It AI-First?
- Consistent, clear naming: Classes, methods, and templates are named for discoverability and semantic search.
- Separation of concerns: Logic, templates, and configuration are cleanly separated, so AI can suggest or generate changes in isolation.
- Extensive inline documentation: Comments and docblocks are written to help both humans and AI understand intent and usage.
- Configurable via XML and DI: Most features (fields, processors, templates) are configured in XML or DI, so AI can suggest changes without deep PHP edits.
- Composable processors: The data processor system is designed for easy extension and chaining, which is ideal for AI-driven code generation.
- Template-driven UI: UI and JS are in templates, so AI can generate or modify UI logic without touching backend code.
How to Extend Mage Grid Using Cursor or AI
You can use AI tools like Cursor to:
- Add new data processors (e.g., for custom formatting, badges, or links)
- Add or modify grid fields and templates
- Inject new JS/HTML for popups, modals, or custom actions
- Refactor or optimize code for performance or maintainability
Example: Adding a Custom Data Processor with Cursor
- Describe your goal in Cursor:
- "Add a processor that renders the 'priority' field as a colored badge."
- Let Cursor search for DataProcessorInterface and StatusProcessor.
- Cursor generates a new PriorityProcessor.php:
- Implements the interface, adds color logic, and registers in di.xml.
- Update your layout XML to map the 'priority' field to the new processor.
Example: Adding a Popup with AI
- Describe your goal:
- "Add a popup that shows full row details when the 'Order Number' cell is clicked."
- AI suggests a new JS function and a template snippet.
- Add the JS to an additional-html.phtml template and configure it in layout XML.
- AI updates the grid template to include the new popup logic.
Practical Steps for AI-Driven Extension
- Use Cursor's semantic search to find relevant classes, templates, or config files.
- Use inline comments and docblocks to guide AI suggestions.
- Use the modular template and processor system to add or override features without deep code changes.
- Test changes iteratively, letting AI suggest fixes or improvements.
Tip:
- The more you describe your intent (in comments, commit messages, or AI prompts), the better the AI can help you extend or refactor the grid.
Installation
- Copy the module to your Magento installation:
cp -r app/code/Mage/Grid /path/to/magento/app/code/
- Enable the module:
bin/magento module:enable Mage_Grid
- Run setup upgrade:
bin/magento setup:upgrade
- Clear cache:
bin/magento cache:clean
Usage
Basic Grid Setup
- Create a layout file (e.g.,
view/adminhtml/layout/your_module_grid_index.xml
):
<?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceContainer name="content"> <block class="Mage\Grid\Block\MageGridBlock" name="your_grid"> <arguments> <argument name="viewModel" xsi:type="object">Mage\Grid\ViewModel\GenericViewModelGrid</argument> <argument name="collectionClass" xsi:type="string">Your\Module\Model\ResourceModel\YourCollection</argument> <argument name="fields" xsi:type="array"> <item name="id" xsi:type="string">ID</item> <item name="name" xsi:type="string">Name</item> <item name="created_at" xsi:type="string">Created At</item> </argument> </arguments> </block> </referenceContainer> </body> </page>
- Create a controller (e.g.,
Controller/Adminhtml/YourGrid/Index.php
):
<?php namespace Your\Module\Controller\Adminhtml\YourGrid; use Magento\Backend\App\Action; use Magento\Framework\View\Result\PageFactory; class Index extends Action { protected $resultPageFactory; public function __construct( Action\Context $context, PageFactory $resultPageFactory ) { parent::__construct($context); $this->resultPageFactory = $resultPageFactory; } protected function _isAllowed() { return $this->_authorization->isAllowed('Your_Module::your_grid'); } public function execute() { $resultPage = $this->resultPageFactory->create(); $resultPage->setActiveMenu('Your_Module::your_grid'); $resultPage->getConfig()->getTitle()->prepend(__('Your Grid Title')); return $resultPage; } }
Custom Column Cells with Preact
The module uses GridJS with Preact for rendering custom column cells. Here's how to create custom column cells:
- Basic Custom Column:
require(['jquery', 'gridjs'], function($, grid) { jQuery("#yourGrid").Grid({ columns: [ 'Name', 'Email', { name: 'Actions', formatter: (_, row) => html`<button onclick="editItem(${row.cells[0].data})">Edit</button>` } ], data: [ ['John Doe', 'john@example.com'], ['Jane Smith', 'jane@example.com'] ] }); });
- Complex Custom Column with Magento Integration:
require(['jquery', 'gridjs'], function($, grid) { jQuery("#yourGrid").Grid({ columns: [ 'Order ID', 'Customer', { name: 'Status', formatter: (cell, row) => { const status = cell; const color = status === 'Complete' ? 'green' : 'red'; return html`<span style="color: ${color}">${status}</span>`; } }, { name: 'Actions', formatter: (_, row) => { const orderId = row.cells[0].data; return html` <div class="actions"> <button onclick="viewOrder('${orderId}')">View</button> <button onclick="editOrder('${orderId}')">Edit</button> <button onclick="deleteOrder('${orderId}')">Delete</button> </div> `; } } ], data: [ ['10001', 'John Doe', 'Complete'], ['10002', 'Jane Smith', 'Pending'] ] }); });
- Custom Column with AJAX Data:
require(['jquery', 'gridjs'], function($, grid) { jQuery("#yourGrid").Grid({ columns: [ 'Order ID', { name: 'Customer Details', formatter: async (_, row) => { const orderId = row.cells[0].data; const response = await fetch(`/rest/V1/orders/${orderId}`); const data = await response.json(); return html` <div class="customer-details"> <strong>${data.customer_firstname} ${data.customer_lastname}</strong> <br/> <small>${data.customer_email}</small> </div> `; } } ], data: [ ['10001'], ['10002'] ] }); });
- Custom Column with Magento UI Components:
require(['jquery', 'gridjs', 'Magento_Ui/js/modal/alert'], function($, grid, alert) { jQuery("#yourGrid").Grid({ columns: [ 'Order ID', { name: 'Actions', formatter: (_, row) => { const orderId = row.cells[0].data; return html` <div class="actions"> <button onclick="showOrderDetails('${orderId}')">Details</button> </div> `; } } ], data: [ ['10001'], ['10002'] ] }); window.showOrderDetails = function(orderId) { alert({ title: 'Order Details', content: `Loading order ${orderId}...`, actions: { always: function() { // Load order details via AJAX } } }); }; });
- Custom Column with Magento Form Elements:
require(['jquery', 'gridjs'], function($, grid) { jQuery("#yourGrid").Grid({ columns: [ 'Order ID', { name: 'Status', formatter: (cell, row) => { const orderId = row.cells[0].data; return html` <select onchange="updateStatus('${orderId}', this.value)"> <option value="pending" ${cell === 'pending' ? 'selected' : ''}>Pending</option> <option value="processing" ${cell === 'processing' ? 'selected' : ''}>Processing</option> <option value="complete" ${cell === 'complete' ? 'selected' : ''}>Complete</option> </select> `; } } ], data: [ ['10001', 'pending'], ['10002', 'processing'] ] }); });
Configuration Options
The grid supports various configuration options:
- Collection-based Grid:
<argument name="collectionClass" xsi:type="string">Your\Module\Model\ResourceModel\YourCollection</argument>
- SQL-based Grid:
<argument name="tableName" xsi:type="string">your_table_name</argument>
- Field Configuration:
<argument name="fields" xsi:type="array"> <item name="field_name" xsi:type="string">Field Label</item> </argument>
- Pagination:
<argument name="pageSize" xsi:type="number">20</argument>
- Filters:
<argument name="showFilters" xsi:type="boolean">true</argument>
Customization
-
Override Template: Create your own template at
view/adminhtml/templates/grid/grid-component.phtml
-
Custom ViewModel: Extend
GenericViewModelGrid
to add custom functionality:
<?php namespace Your\Module\ViewModel; use Mage\Grid\ViewModel\GenericViewModelGrid; class YourCustomViewModel extends GenericViewModelGrid { // Add your custom methods here }
Customizing the Grid Component Template
The module uses a template file at view/adminhtml/templates/grid/grid-component.phtml
that you can customize. Here are some examples:
- Basic Custom Column with Formatter:
<?php // In your layout file <block class="Mage\Grid\Block\GenericGrid" name="your_grid"> <arguments> <argument name="fields" xsi:type="array"> <item name="id" xsi:type="string">ID</item> <item name="name" xsi:type="string">Name</item> <item name="status" xsi:type="string">Status</item> </argument> </arguments> </block>
// In your template const grid = new Grid({ columns: [ 'ID', 'Name', { name: 'Status', formatter: (cell) => { const color = cell === 'Active' ? 'green' : 'red'; return html`<span style="color: ${color}">${cell}</span>`; } } ], data: [ ['1', 'John Doe', 'Active'], ['2', 'Jane Smith', 'Inactive'] ], pagination: { enabled: true, limit: 20 }, sort: true, search: true }).render(document.getElementById('wrapper'));
- Custom Column with Actions:
const grid = new Grid({ columns: [ 'ID', 'Name', { name: 'Actions', formatter: (_, row) => { const id = row.cells[0].data; return html` <div class="actions"> <button onclick="viewItem('${id}')">View</button> <button onclick="editItem('${id}')">Edit</button> <button onclick="deleteItem('${id}')">Delete</button> </div> `; } } ], data: [ ['1', 'John Doe'], ['2', 'Jane Smith'] ] }).render(document.getElementById('wrapper')); // Add your action functions window.viewItem = function(id) { // Your view logic }; window.editItem = function(id) { // Your edit logic }; window.deleteItem = function(id) { // Your delete logic };
- Custom Column with Magento UI Components:
require(['jquery', 'gridjs', 'Magento_Ui/js/modal/alert'], function($, grid, alert) { const gridInstance = new Grid({ columns: [ 'ID', 'Name', { name: 'Actions', formatter: (_, row) => { const id = row.cells[0].data; return html` <button onclick="showDetails('${id}')">Details</button> `; } } ], data: [ ['1', 'John Doe'], ['2', 'Jane Smith'] ] }).render(document.getElementById('wrapper')); window.showDetails = function(id) { alert({ title: 'Item Details', content: `Loading details for item ${id}...`, actions: { always: function() { // Your AJAX logic here } } }); }; });
- Custom Column with Dynamic Data Loading:
const grid = new Grid({ columns: [ 'ID', { name: 'Details', formatter: async (_, row) => { const id = row.cells[0].data; try { const response = await fetch(`/rest/V1/items/${id}`); const data = await response.json(); return html` <div class="item-details"> <strong>${data.name}</strong> <br/> <small>${data.description}</small> </div> `; } catch (error) { return html`<span class="error">Error loading details</span>`; } } } ], data: [ ['1'], ['2'] ] }).render(document.getElementById('wrapper'));
- Custom Column with Form Elements:
const grid = new Grid({ columns: [ 'ID', 'Name', { name: 'Status', formatter: (cell, row) => { const id = row.cells[0].data; return html` <select onchange="updateStatus('${id}', this.value)"> <option value="pending" ${cell === 'pending' ? 'selected' : ''}>Pending</option> <option value="processing" ${cell === 'processing' ? 'selected' : ''}>Processing</option> <option value="complete" ${cell === 'complete' ? 'selected' : ''}>Complete</option> </select> `; } } ], data: [ ['1', 'John Doe', 'pending'], ['2', 'Jane Smith', 'processing'] ] }).render(document.getElementById('wrapper')); window.updateStatus = function(id, status) { // Your status update logic console.log(`Updating status for ${id} to ${status}`); };
- Custom Column with Filtering:
const grid = new Grid({ columns: [ 'ID', 'Name', { name: 'Status', formatter: (cell) => { const color = cell === 'Active' ? 'green' : 'red'; return html`<span style="color: ${color}">${cell}</span>`; } } ], data: [ ['1', 'John Doe', 'Active'], ['2', 'Jane Smith', 'Inactive'] ], search: true, pagination: { enabled: true, limit: 20 }, sort: true, resizable: true }).render(document.getElementById('wrapper')); // Add custom filter handling document.getElementById('filter-submit').addEventListener('click', function() { const filters = {}; document.querySelectorAll('[id^="filter-"]').forEach(input => { const field = input.id.replace('filter-', ''); filters[field] = input.value; }); // Your filter logic here console.log('Filters:', filters); });
Security
The module includes built-in security features:
- ACL (Access Control List) integration
- Role-based access control
- XSS protection
- CSRF protection
Support
For support, please contact:
- Email: support@mage.com
- GitHub Issues: Create an issue
License
This module is licensed under the MIT License.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Magento 2 Data GridsJS
GridJS and DataTable integration with Magento 2
Grid.js(https://gridjs.io/) is a Free and open-source JavaScript table plugin. It works with most JavaScript frameworks, including React, Angular, Vue and VanillaJs.
Grid.js uses Preact to render the elements and that means that you can take advantage of Preact's Virtual DOM and render complex cells.
DataTable integration with magento
DataTables (https://datatables.net/) is a Javascript HTML table-enhancing library. It is a highly flexible tool, built upon the foundations of progressive enhancement, that adds all of these advanced features to any HTML table.
At First, GridJS was integrated, but after DataTable was added.
All extensions come as jQuery plugins but can work independently.
I also have AG Grid integration for Magento 2 but it is not part of this open source solution. The Best JavaScript Grid in the World The professional choice for developers building enterprise applications
This and all other magento extensions based on this revolutionary extension: https://github.com/Genaker/reactmagento2 it allows running magento without MAgento broken JS and uses better modern solutions
Installation:
composer require mage/gridjs
usage in Admin Area:
require(['jquery','gridjs']){() =>
jQuery('#lastOrdersGrid_table').Grid()
}
Examples: After installation, examples will be embedded at the bottom of the admin dashboard
Source code of the grid
<h1> Grid JS</h1>
<script type="module">
//Modern libs don't work with this magento shit so we are using import.
import { html } from 'preact';
require(['jquery', 'gridjs'], function($, grid) {
jQuery("div#myTable").Grid({
columns: ['Name', 'Email', 'Phone Number' , {
name: 'Actions',
formatter: (_, row) => html`<a href="."><button> EDIT </button></a>`
}
],
pagination: {
limit: 2
},
search: true,
sort: true,
resizable: true,
data: [
['John', 'john@example.com', '(353) 01 222 3333'],
['Mark', 'mark@gmail.com', '(01) 22 888 4444'],
['Egor', 'egorshitikov@gmail.com', '<span>NONE </span>']
]
});
})
</script>
<div id="myTable"></div>
<h1> DataTable </h1>
<script>
require(['jquery', 'DataTable'], function($) {
var dataSet = [
['Tiger Nixon', 'System Architect', 'Edinburgh', '5421', '2011/04/25', '$320,800'],
['Garrett Winters', 'Accountant', 'Tokyo', '8422', '2011/07/25', '$170,750'],
....
];
$('#example').DataTable({
columns: [
{ title: 'Name' },
{ title: 'Position' },
{ title: 'Office' },
{ title: 'Extn.' },
{ title: 'Start date' },
{ title: 'Salary' }
],
data: dataSet
});
})
</script>
<table id="example" class="display" width="100%"></table>
More Examples GridJS
In this examples, we load the data from an existing HTML table
Grid.js can also convert an HTML table. Simply select the table with jQuery and call Grid:
$("table#myTable").Grid();
You can pass all Grid.js configs to the Grid function. See Grid.js Config for more details.
HTML in cells
Then you can use that in formatter function or directly in data array:
const grid = new Grid({
columns: [
{
name: 'Name',
formatter: (cell) => html`<b>${cell}</b>`
},
'Email',
{
name: 'Actions',
formatter: (_, row) => html`<a href='mailto:${row.cells[1].data}'>Email</a>`
},
],
data: Array(5).fill().map(x => [
faker.name.findName(),
faker.internet.email(),
null
])
});
Import server-side data
You can use the server property to load data from a remote server and populate the table:
const grid = new Grid({
columns: ['Name', 'Language', 'Released At', 'Artist'],
server: {
url: 'https://api.scryfall.com/cards/search?q=Inspiring',
then: data => data.data.map(card => [card.name, card.lang, card.released_at, card.artist])
}
});
Server Side Pagination
Add server property to the pagination config to enable server-side pagination. Also, make sure the total property is correctly defined in the main server config block
const grid = new Grid({
columns: ['Pokemon', 'URL'],
pagination: {
limit: 5,
server: {
url: (prev, page, limit) => `${prev}?limit=${limit}&offset=${page * limit}`
}
},
server: {
url: 'https://pokeapi.co/api/v2/pokemon',
then: data => data.results.map(pokemon => [
pokemon.name, html(`<a href='${pokemon.url}'>Link to ${pokemon.name}</a>`)
]),
total: data => data.count
}
});
DataTable example
Loading data
Ajax data is loaded by DataTables simply by using the ajax option to set the URL for where the Ajax request should be made. For example, the following shows a minimal configuration with Ajax sourced data:
$('#myTable').DataTable( {
ajax: '/api/myData'
} );
JSON data source
When considering Ajax loaded data for DataTables we almost always are referring to a JSON payload - i.e. the data that is returned from the server is in a JSON data structure. This is because the JSON is derived from Javascript and it therefore naturally plays well with Javascript libraries such as DataTables.
Non-jQuery options
If you are initialising DataTables through the new DataTable() option available in DataTables 1.11, you can pass configuration options in using the second parameter of the constructor:
new DataTable( '#example', {
paging: false,
scrollY: 400
} );
Data rendering
Data within DataTables can be easily rendered to add graphics or colour to your tables, as demonstrated in the example on this page. These examples make use of columns.render to customise the cells in three ways:
$('#example').DataTable({
ajax: '../ajax/data/objects_salary.txt',
columns: [
{
data: 'name'
},
{
data: 'position',
render: function (data, type) {
if (type === 'display') {
let link = 'https://datatables.net';
if (data[0] < 'H') {
link = 'https://cloudtables.com';
}
else if (data[0] < 'S') {
link = 'https://editor.datatables.net';
}
return '<a href="' + link + '">' + data + '</a>';
}
return data;
}
},
{
className: 'f32', // used by world-flags-sprite library
data: 'office',
render: function (data, type) {
if (type === 'display') {
let country = '';
switch (data) {
case 'Argentina':
country = 'ar';
break;
case 'Edinburgh':
country = '_Scotland';
break;
case 'London':
country = '_England';
break;
case 'New York':
case 'San Francisco':
country = 'us';
break;
case 'Sydney':
country = 'au';
break;
case 'Tokyo':
country = 'jp';
break;
}
return '<span class="flag ' + country + '"></span> ' + data;
}
return data;
}
},
{
data: 'extn',
render: function (data, type, row, meta) {
return type === 'display'
? '<progress value="' + data + '" max="9999"></progress>'
: data;
}
},
{
data: 'start_date'
},
{
data: 'salary',
render: function (data, type) {
var number = $.fn.dataTable.render
.number(',', '.', 2, '$')
.display(data);
if (type === 'display') {
let color = 'green';
if (data < 250000) {
color = 'red';
}
else if (data < 500000) {
color = 'orange';
}
return (
'<span style="color:' +
color +
'">' +
number +
'</span>'
);
}
return number;
}
}
]
});
Data Processors System
Mage Grid uses a flexible and extensible data processor system to transform and format grid cell values before rendering. This allows you to easily customize how each field is displayed, including adding HTML, formatting dates, prices, statuses, and more.
How It Works
- Field Mapping:
Each field (e.g.,
status
,grand_total
,created_at
) can be mapped to a specific processor class indi.xml
:<argument name="dataProcessors" xsi:type="array"> <item name="status" xsi:type="object">Mage\Grid\Model\DataProcessor\StatusProcessor</item> <item name="grand_total" xsi:type="object">Mage\Grid\Model\DataProcessor\PriceProcessor</item> <!-- ... --> </argument>
- Default Processor:
If a field does not have a specific processor, the
DefaultProcessor
is used, which safely escapes HTML. - Chain Processor:
You can define a
ChainProcessor
that runs multiple processors in a specific order, allowing for complex, layered transformations (e.g., escape, then format as price, then add custom markup).
Example Processors
- DefaultProcessor: Escapes HTML for safe output.
- StatusProcessor: Renders status fields as colored badges with icons.
- PriceProcessor: Formats numeric values as styled prices.
- DateProcessor: Formats date/time fields.
- ChainProcessor: Runs a sequence of processors in a defined order (configurable via DI and each processor's
$order
property).
Customization
- Add your own processor:
Implement
Mage\Grid\Api\DataProcessorInterface
and map it to a field indi.xml
. - Control execution order:
Set the
$order
property in your processor class and/or override it via DI.
Example Usage
// In your ViewModel, the correct processor is chosen dynamically: $processor = $this->dataProcessors[$field] ?? $this->defaultProcessor; $output = $processor->process($field, $value, $row);
This system makes your grid output highly customizable, maintainable, and ready for advanced formatting needs.
Additional HTML/JS Templates (Popups, Custom Scripts, etc.)
Mage Grid allows you to inject additional HTML or JavaScript into your grid page using configurable template files. This is useful for adding custom popups, event handlers, or any extra markup/scripts you need for your grid.
How to Use
-
Create your additional template(s):
- Place your custom HTML/JS in
.phtml
files, e.g.:view/adminhtml/templates/grid/additional-html.phtml
view/adminhtml/templates/grid/another-additional-html.phtml
- Place your custom HTML/JS in
-
Configure in layout XML:
- You can specify one or more additional templates using the
additional_html_templates
argument:
<block class="Mage\Grid\Block\GenericGrid" name="your.grid.block" template="Mage_Grid::grid/grid-component.phtml"> <arguments> <argument name="additional_html_templates" xsi:type="array"> <item name="popupJS" xsi:type="string">Mage_Grid::grid/additional-html.phtml</item> <item name="custom2" xsi:type="string">Mage_Grid::grid/another-additional-html.phtml</item> </argument> </arguments> </block>
- The block will render each template in order. If a template is missing, an error message will be shown for that template.
- You can specify one or more additional templates using the
-
Access in your main grid template:
- In your main grid template (e.g.
grid-component.phtml
), output the additional HTML:
<?= $block->getAditionalHTML() ?>
- In your main grid template (e.g.
Example: Popup Event Handler Integration
If you want to add a popup that shows row details when a status badge is clicked, your additional-html.phtml
might look like:
<script> // Re-attach after every Grid.js update if (window.grid) { grid.on('ready', attachStatusBadgePopup); grid.on('update', attachStatusBadgePopup); } </script>
Important:
- If your grid data is updated dynamically (e.g. via AJAX or Grid.js), you must re-attach event handlers after each update. The above example does this using Grid.js events.
- You can include as many additional templates as you need, and each can contain its own scripts or markup.
Error Handling
- If a specified template does not exist, a user-friendly error message will be shown in the grid output.