hii vijaybir singh
you can use some logic like
you can directly call a function on change of input and make a variable set false and when there is input length >0 then make variable true else make false
and before navigate on other page check variable is true or not if true return a confirm prompt
for example
var _isDirty = false;
$("input[type='text']").change(function(){
_isDirty = true;
});
// replicate for other input types and selects
i hope this will help you
Hi Vijaybir,
I don’t know if it works for native, usually there is an App Store module to detect changes and show a message,
https://marketplace.mendix.com/link/component/21721
You could try this or something similar,
Ashok