jquery-mobile-simpledialog
jquery-mobile-simpledialog copied to clipboard
DEAD: Simple popup dialogs for jQM
To be able to translate the visible text of the button.
It seems the coords are calculated before `create` is fired on dialog. So I recalculated after.
I used jQueryMobile1.3 and SimpleDialgue2 。I want to create a popup to input the sth . I used Blank Mode "Inlining" - Adoption. In WebBrowser, It is OK. But in...
I'm trying to use simpledialog2 in button mode, and it's working in one place in my program but fails in another. Where it fails, the dialog either doesn't appear at...
In jquery.mobile.simpledialog2.js, line 338 (function 'destroy'): instead of ``` javascript $.mobile.sdCurrentDialog.sdIntContent.find('select').each(function() { ``` you probably meant to write ``` javascript self.sdIntContent.find('select').each(function() { ``` otherwise trying to close the 2nd dialog...
Happy New Year to all of you! I've been using the SimpleDialgo2 and Datebox for the past few days while developing an app for Tablet and iPad, recently I started...
The pop-up dialog is added too low on the screen when first created. For an example I use: http://dev.jtsage.com/jQM-SimpleDialog/demos2/popup.html Upon opening the dialog, it displays below the middle vertically. Example:...
I'm using a native dialog, ``` $('').simpledialog2({ 'mode': 'blank', 'headerText': 'Insert Image', 'headerClose': false, 'buttonPrompt': '', 'dialogAllow': true, 'dialogForce': true, 'themeDialog': 'a', 'blankContent' : t._buildFileUploadForm(), }); ``` Using `$(document).trigger('simpledialog', {'method':'close'});`...
Hello , i am using simple dialog in my jquery mobile application. i wanna support all devices and desktop browser. right now i am changing dialog content dynamically like HTML...
I have a simpledialog2 dialog like: ``` $(document).simpledialog2({ 'mode' : 'button', 'zindex': 10005, 'buttonPrompt' : 'End chat?', 'buttons' : { 'Yes': { click: function () { return endChat(true); }, icon:...