Search found 4 matches

by devyk
15 Aug 2017, 19:54
Forum: Help
Topic: Separate tree, search and attribute from filter component
Replies: 12
Views: 5079

Re: Separate tree, search and attribute from filter componen

Another possible solution is extend base component and override the getSubClientNames() method in way like this. Component properties are private that's why more elegant solution is not possible, which is a little bit weird. (or component classes are not supposed to be extended?). protected function...
by devyk
15 Aug 2017, 19:28
Forum: Help
Topic: Separate tree, search and attribute from filter component
Replies: 12
Views: 5079

Re: Separate tree, search and attribute from filter componen

I see from your method that this components will be available for a single action only, which is not suitable for my task. I have a global header, so this components should be available on multiple pages. Overriding each action seems to be a bad solution. I'm thinking about overriding components fac...
by devyk
14 Aug 2017, 11:00
Forum: Help
Topic: Separate tree, search and attribute from filter component
Replies: 12
Views: 5079

Re: Separate tree, search and attribute from filter componen

I'm using laravel integration.
by devyk
13 Aug 2017, 17:58
Forum: Help
Topic: Separate tree, search and attribute from filter component
Replies: 12
Views: 5079

Separate tree, search and attribute from filter component

I would like to display categories tree as main menu, attributes lists as right column at list page and display search field in the header section. I see the only way to do it just by reimplementing this subparts as separate components. Is it right solution for the task or there is better method to ...