├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── etc └── module.xml ├── registration.php ├── renovate.json └── view ├── adminhtml └── ui_component │ └── sales_order_grid.xml └── base └── web ├── css └── source │ └── _module.less ├── js └── grid │ └── refresh │ └── refresh.js └── template └── grid ├── refresh └── refresh.html ├── sticky └── sticky.html └── toolbar.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/composer.json -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/registration.php -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/renovate.json -------------------------------------------------------------------------------- /view/adminhtml/ui_component/sales_order_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/view/adminhtml/ui_component/sales_order_grid.xml -------------------------------------------------------------------------------- /view/base/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/view/base/web/css/source/_module.less -------------------------------------------------------------------------------- /view/base/web/js/grid/refresh/refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/view/base/web/js/grid/refresh/refresh.js -------------------------------------------------------------------------------- /view/base/web/template/grid/refresh/refresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/view/base/web/template/grid/refresh/refresh.html -------------------------------------------------------------------------------- /view/base/web/template/grid/sticky/sticky.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/view/base/web/template/grid/sticky/sticky.html -------------------------------------------------------------------------------- /view/base/web/template/grid/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adapttive/advance-grid/HEAD/view/base/web/template/grid/toolbar.html --------------------------------------------------------------------------------