From f43999002d81b22cc892c9ae1edf7b1b667f3757 Mon Sep 17 00:00:00 2001 From: pxpm Date: Tue, 6 Jan 2026 13:25:13 +0000 Subject: [PATCH] add docs about reserved filter names --- 7.x/crud-filters.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/7.x/crud-filters.md b/7.x/crud-filters.md index 29a2bcd0..f4d2cf14 100644 --- a/7.x/crud-filters.md +++ b/7.x/crud-filters.md @@ -40,6 +40,8 @@ CRUD::filters(); // gets all the filters ### Adding and configuring a filter +> Some filter names are reserved. Do **NOT** use the following names in filters: **lenght**, **draw**, **start**, **search**, **totalEntryCount**, **columns** or **datatable_id**. + Inside your `setupListOperation()` you can add or select a filter using `CRUD::filter('name')`, then chain methods to completely configure it: ```php