We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
filter for Select2 class is diffrent than const of Select2 in DataColumn
[ 'class' => DataColumn::class, 'attribute' => 'category', 'filterType' => Select2::class, <--- this return kartik\select2\Select2 !! [...] ]
and follow to kartik\grid\DataColumn
`
[...] if ($this->filterType === GridView::FILTER_SELECT2 || $this->filterType === GridView::FILTER_TYPEAHEAD) { $options['data'] = $this->filter; } [...]
and is false because const GridView::FILTER_SELECT2 = \kartik\select2\Select2 with \ in prefix
kartik\select2\Select2 !== \kartik\select2\Select2
The text was updated successfully, but these errors were encountered:
6a35ed8
No branches or pull requests
filter for Select2 class is diffrent than const of Select2 in DataColumn
and follow to kartik\grid\DataColumn
`
`
and is false because const GridView::FILTER_SELECT2 = \kartik\select2\Select2 with \ in prefix
kartik\select2\Select2 !== \kartik\select2\Select2
The text was updated successfully, but these errors were encountered: