Skip to main content

[Titanium] show confirm messagebox

Titanium is a cross-platform framework based on javascript. So, you can simple show an alert messagebox by normal javascript code:
alert('Alert text');

However, when you want to show a confirm messagebox to user with additional options as Yes/No/Cancel, you should use Titanium API to do that.
var alertReset = Titanium.UI.createAlertDialog({
title: 'Question',
message: 'Do you really want to do this?',
buttonNames: ['Yes', 'No', 'Cancel'],
});
alertReset.addEventListener('click', function(e) {
Titanium.API.info('e = ' + JSON.stringify(e));
switch(e.index){
case 0://yes
alert('You choose Yes');
break;
case 1://no
alert('You choose No');
break;
case 2://cancel
alert('You choose Cancel');
break;
default:
break;
}
});
alertReset.show();

That's alll.
Wish succeed!

Comments

Popular posts from this blog

Turn off AutoPlay on Windows

On Windows, when you insert an USB or a CD/DVD into your computer, they are usually opened automatically. So the computer maybe infected autorun virus. To avoid that, you should turn off AutoPlay function.

Install and play Pokemon Go on unsupported device

Pokemon Go is great mobile game for smart devices (Android, iOS...). Many people can install and play it normally. However, some device has not been supported yet (Intel inside smartphone: Asus Zenfone, Dell Veune, ...; Windows Phone devices...). Here we show you how to play it in all your devices. For Android devices: Enable “Unknown sources” in the settings. Download Pokemon Go app setup:  Link 1  / Link 2   Open the downloaded file to install app. Enable all the settings when promted. Now you can open and run Pokemon Go to catch 'em. ... That's all. Wish succeed!