new sap.ui.table.Table("validationTable",{
navigationMode : sap.ui.table.NavigationMode.Paginator,
selectionMode: sap.ui.table.SelectionMode.None
});
My scenario is
when user changes from one page to another page i need to alert the user. Content of the table can be editable so if user edit the content and navigates to another page then i want to alert the user to "please save the changes made" .
Please help me on this.