You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have made some changes in order to search by column.
If I want the user to be able to search in some columns, I pass one more parameter to table params 'column_search'=>true for these columns. This creates an input field after the column header title.
Then I am able to use these filters in the query method by accessing them on $_GET['filter'] parameter like the example below:
The columnSearch filters the column a bit diffrent. for example when searching in the users table and you fill in the name Foo the results require to have Foo in there column name.
Hello,
I have made some changes in order to search by column.
If I want the user to be able to search in some columns, I pass one more parameter to table params
'column_search'=>true
for these columns. This creates an input field after the column header title.Then I am able to use these filters in the query method by accessing them on
$_GET['filter']
parameter like the example below:This way, i am able to search in columns.
I can upload the code and working example to check this functionality and add it to the package if it's ok.
The text was updated successfully, but these errors were encountered: