Автоматическое обновление данных в таблице при смене в multiview?

Здравствуйте!
Есть muliview с несколькими вкладками. Во вкладках формы и таблицы. Как реализовать автоматическое обновление содержимого таблицы запросом с сервера в активной вкладке при переключении на нее?

Здравствуйте! Вы можете использовать событиеonViewChange( prevView, nextView ), чтобы получить ID вкладки и обновить данные через

nextView.clearAll();
nextView.load("path");

Спасибо!

Не получается ( т.к. nextView - это id layout, который содержит форму и таблицу.
console.log($$(nextView).getChildViews()[1]) выдает
h {$ready: Array[1], config: Object, s: Object, Xb: h, $scope: null…}

English please for the rest of us who don’t speak Russian? Thank you :slight_smile:

There muliview with multiple tabs. In the tabs, form and datatable. How to implement automatic update request to table content from the server in the active tab, when I switch to it.

nextView.clearAll();
nextView.load(“path”);

does not work as “nextView” - this id layout, which holds form and a datatable.

console.log($$(nextView).getChildViews()[1]) in onViewChange show this:

h {$ready: Array[1], config: Object, s: Object, Xb: h, $scope: null…}

@yrichs a sample above assumes that the one cell contains one view without any additional hierarchy. In fact, you need to get the datatable as a child view and apply the mentioned methods to it. Here’s a sample:

http://webix.com/snippet/0278538b