Skip to content

sjregan/PinDialog

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PinDialog

PhoneGap numeric text dialog plugin for Android and iOS. Forked from https://github.com/apache/cordova-plugin-dialogs.git

Installation

Current state from git: cordova plugin add https://github.com/sjregan/PinDialog.git

Installation - PhoneGap Build

Add following to config.xml: <gap:plugin name="sjregan.phonegap.plugins.pindialog" /> or <gap:plugin name="sjregan.phonegap.plugins.pindialog" source="plugins.cordova.io" />

Supported Platforms

  • Android
  • iOS

Usage:

// Show pin dialog
window.plugins.pinDialog.prompt("message", callback, "title", ["OK","Cancel"]);

Callback:

function callback(results)
{
    if(results.buttonIndex == 1)
    {
        // OK clicked, show input value
        alert(results.input1);
    }
    if(results.buttonIndex == 2)
    {
        // Cancel clicked
        alert("Cancel");
    }
};

About

PhoneGap numeric password dialog plugin for Android and iOS. Forked from https://github.com/apache/cordova-plugin-dialogs.git

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 71.0%
  • Objective-C 24.4%
  • JavaScript 4.6%