How to navigate to another page with OnItemClick in pivot

Am trying to use OnItemClick to get the entire row values for the selected row in pivot table and want to navigate to other page. can this be done ?

Hello,

Yon can listen to the onItemClick event and get the related row data from the inner Treetable accessed as pivot.$$("data"):

on:{
   onItemClick:function(id){
      console.log(this.$$("data").getItem(id));
   }
}

https://snippet.webix.com/936fray7

Thanks @Helga … will try this out