File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
public/js/pimcore/object/folder Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -293,8 +293,14 @@ pimcore.object.search = Class.create(pimcore.object.helpers.gridTabAbstract, {
293293
294294 col . filter . value = filterValue ;
295295 }
296- } else {
297- break ;
296+ }
297+ } else {
298+ if ( this . filter ) {
299+ const filterValue = this . filter . find ( filter => filter . property === col . dataIndex ) ?. value || null ;
300+
301+ if ( filterValue ) {
302+ col . text = '<i>' + col . text + '</i>' ;
303+ }
298304 }
299305 }
300306 }
@@ -352,10 +358,11 @@ pimcore.object.search = Class.create(pimcore.object.helpers.gridTabAbstract, {
352358
353359 if ( this . filter ) {
354360 this . filter . forEach ( filt => {
355- this . filterUpdateFunction ( this . grid , this . toolbarFilterInfo , this . clearFilterButton ) ;
361+ this . store . setFilters ( new Ext . util . Filter ( filt ) ) ;
356362 } ) ;
357- }
358363
364+ this . filterUpdateFunction ( this . grid , this . toolbarFilterInfo , this . clearFilterButton ) ;
365+ }
359366
360367 this . grid . on ( "columnmove" , function ( ) {
361368 this . saveColumnConfigButton . show ( )
You can’t perform that action at this time.
0 commit comments