DataTable -> Configuration -> Subview : lazy load Subview config

Is there a way to define configuration for Subview and load it at the time when user expands the Subview ?

There are two reasons for this question:

  1. Heavy data table (200+ records ) with additional data load into a Subview at a page load can significantly affect the data table performance
  2. I would like to have an opportunity to load the required control into a Subview conditionally, depending on record data and application logic.

try to use subview as function. this way you can perform any operation on created subview. even return different views depending on condition.
https://snippet.webix.com/jno8vq28
if you need simple operations, you can use onSubViewCreate event
https://docs.webix.com/api__ui.datatable_onsubviewcreate_event.html

That worked. Thanks.