Robert

Results 21 comments of Robert

In a menu the ListItem can be surrounded with an `a` tag. Does this help? Just found that out myself. ``` COMPANY SETTINGS ACCOUNT SETTINGS ```

My guess is that it has something to do with reactive declared variables in components. Because sometimes they are red in the editor. If I then modify the code they...

I've stumbled upon this. Would have been nice, if it would already be part of the lib. Of course, it's up to you, if you'd like to implement that. Just...

Thank you @EndErr for that. Seems to work. Just the `urlManagerFronend` is confusing me a bit, since I don't have a `@web`. Now I just use the default urlManager, so...

Same here with version 0.10.56.15 and PhpStorm 2018.2.1 (Linux). However, the concering project contains just a Yii module, but with normal controllers, models, views. Can it also be related to...

Stumbled on the same issue. Same problem seems to exist if via() and the corresponding relation model are used.

@Commifreak Unfortunately, this seems to be problematic as soon as an additional where condition exists. Right? Then all conditions gets wrapped into `(` `)`...

@DrummerKH Does your solution really work? Which queries gets created by ```php public function getModles(): ActiveQuery { return $this ->hasMany('model_table', ['id' => 'relation_id']) ->viaTable('via_table', ['owner_id' => 'id']) ->leftJoin('via_table via', 'via.relation_id...

@samdark Is it possible that you or anyone implement that? The approach of @Commifreak looks promising but is not complete, afaik. It's to complex for me to provide a solution,...