Finding specific parent of a view

Is there a way to find a specific type of parent of a particular view? I’ve found the getParentView and getTopParentView methods but these go up one or all levels. I want to be able to find a particular parent that can be inbetween these. For example: thatview = this.findParentView(view.config.custom_type==‘acertainview’);

Webix doesn’t have such kind of locator, you can use getParentView in the loop to check all parent items though.

Also, there is a getFormView method that returns a parent form.