Katya, someone... I am still lost here. I can get the popup to occur, but the 'delete' button I am attaching it to still fires even before anything can be selected. Can you help me figure out what I am doing wrong?
Katya, someone... I am still lost here. I can get the popup to occur, but the 'delete' button I am attaching it to still fires even before anything can be selected. Can you help me figure out what I am doing wrong?
Hello Dave,
Please try this code. It should help you and it has better structure and it is easier for understanding: https://getsatisfaction.com/apperyio/...
I want to get a message dialog box when the count value is greater than 1000 on an input box of type = number. MessageDialog function is not working on ValueChange event that is when my value changes to a value more than 1000 ... it does not gives a Message Dialog pop-up in Appery. Urgently help needed.
Hello Jitendra,
You need to check any mistakes in console and check that event is fired (for example using alert):
http://devcenter.appery.io/documentat...
I want to Fadeout this MessageDialog alert box after 1 second . What do I need to do for that ?
Hi Jitendra.
If you need navigate to other page with some effect after some delay you can use following code:
pre
//Here you should set delay before action in miliseconds.
var delay = 1000;
var onDelay = function(){
Apperyio.navigateTo('Screen11', {
transition: 'fade'
});
};
window.setTimeout(onDelay, delay);
/pre
Also you can find other transitions here:
http://demos.jquerymobile.com/1.2.0/d...
Regards.
Further, I am facing the above issue on Android 4.3,Samsung Galaxy S-3 phone only not on iOS phones.
Solved this Problem by the help of these links :-
Hi Jitendra,
Glad you solved it! Thank you for sharing this.