Expandable sections using Webix Jet

I am evaluating Webix Jet Framework for future use.

My mock application has a tabview. With 5 tabs. Each tab is declared as a separate view. I use Webix Jet ( with requireJS) to keep all of the views in separate declarations (files).

A few of 5 tab views have hidden sections. I was trying to accomplish these hidden sections by using subviews. The subviews are declared in each tab definition.

The first tab subview I created and tested seemed to work. I used a url to load the subview into that tab. However, when I tried to add a subview to my second tab i got the error “Non Unique View ID:settingTabView:subview”

You are creating different view but with the same ID. The ID should be unique. Use the webix.uid() to generate the ID.

Apin,

I added unique id’s to all of my subviews but this did not resolve the issue.

Hi phillipbligh,

it seems that you still reuse settingTabView view somewhere.

Could you please share code snippets for you views? You can post them here enclosed into ~~~ signs.