Tabview load problem on Jet

I import two views on webix jet and create a tabview component putting in the cells the views that I imported before. The problem is that the tabview only shows the first view of cell, then, when i switch tabs, it doesn’t show anything, just a blank.
But i don’t get any error on the console

This is my code:

import { JetView, plugins } from "webix-jet";
import view1 from '';
import view2 from '';



export default class TabViewExample extends JetView {
  config() {

    let cells = [
      {
        header: "View1", body: view1
      },
      {
        header: "View2", body: view2
      }
    ];


    let tabView = {
      view: "tabview",
      tabbar: {
        tabMinWidth: 150,
        tabMoreWidth: 80,
        padding: 2,
        moreTemplate: "<span class='webix_icon mdi mdi-dots-vertical'></span>",
        popupWidth: 250,
        popupTemplate: "#value#",
        yCount: 10,
      },
      cells: cells,
    }

    return tabView;
  }

  init() {
  }
}

Hello @Dalaz,

I import two views on webix jet and create a tabview component putting in the cells the views that I imported before. The problem is that the tabview only shows the first view of cell, then, when i switch tabs, it doesn’t show anything, just a blank.

Unfortunately, I was unable to reproduce the issue you are having using the exact same parent JetView config (both of the subviews initialized correctly regardless of the way they were exported). Could you please provide the configs for the imported views (namely view1 and view2)?

@Dzmitry

this is the code for the first view: Code Snippet
and the second tab is: Code Snippet

@Dzmitry , Before webix jet we used to load pages putting a iframe and load it with an url, but with webix jet idk if there is a similar option