A form (window, box, etc.) presented to a user, usually for the purpose of capturing input or to make a decision.
0
votes
1answer
5 views
How to force WebDialog in Facebook Android SDK use facebook.com and not m.facebook.com?
I'm building an Android app with the Facebook SDK (3.0.1). On sending a friend request using the WebDialog, Facebook returns "Sorry, something went wrong." I reported this to Facebook bugs and someone ...
-6
votes
2answers
38 views
Creating a View with two Edittext's [closed]
to show 2 Edittexts in a AlertDialog I need to summarise them to one view. How is this possible or is this possible in general?
Has anyone an example?
0
votes
2answers
25 views
How to make an app wait for an input
I am trying to get an input from another method then using that input afterwards, but the app does not wait for an input.
The code that I'm running is
case (R.id.menuSort):
sSort = ...
1
vote
2answers
23 views
using ui-disabled on dialog buttons
I'm using jquery mobile and within a <form> i have 'save' and 'edit' buttons (<a> tags with data-role="button"). Once the save button is clicked, a dialog/confirmation opens. In this ...
1
vote
2answers
33 views
Unable to retrieve the EditText in a Custom Dialog
I can't seem to wrap my head around custom dialogs. I've tried many variations, but so far no luck.
This is my current xml for the dialog:
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
0answers
5 views
Pentadactyl / Vimperator: save hint (;s) --> save dialog
Is there any way to save a selected hint via Firefox's GUI save dialog, rather than pentadactyl's command line? I am trying to make a button that does the following: ;s -> user selects a hint -> ...
0
votes
0answers
11 views
Tiny Mce and JQuery Dialog (FireFox and Chrome Issue)
Tiny Mce works fine outside of a jquery dialog box on all browser but when it is addded to a dialog box it breaks on every browser except ie.
Does anyone know why.
IE - It works Fine
FIREFOX, CHROME ...
0
votes
0answers
17 views
change width+height of an AlertDialog with checkbox
was working on an alertdialog with checkbox something like this
CharSequence[] items = {"Google", "Apple", "Microsoft", "Google", "Apple", "Microsoft"};
boolean[] itemsChecked = new ...
-1
votes
0answers
12 views
Android - Dialog on popup activity graphical artifacts
I have an activity with a "popup" style, it appears like a dialog:
<style name="web_popup" parent="android:Theme.Holo.Light.DarkActionBar">
<item ...
1
vote
0answers
17 views
Android - word by word voice recognition without google dialog? [duplicate]
I am trying to make a sample app to demonstrate word by word recognition. So far i am able to achieve the speech recognition which recognise what already being said but i want my app to start ...
0
votes
0answers
3 views
Persist window object opened using window.open
I am opening a dialog box on clicking the hyperlink. The dialog box opened using the window.open.
When this dialog is opened, the parent window is refreshed automatically.
The problem which I am ...
-1
votes
1answer
6 views
How to change border color of a Jface Dialog(or TitleAreaDialog)?
I'm tring to change the border color of a TitleAreaDialog.
But after research found no support for this attempt.
0
votes
3answers
31 views
Can we interact with background activity when displaying a dialog over it in android
I want to display a dialog over an activity but still want to interact with background activity to perform something, while the dialog is being displayed. How can this be done?
0
votes
0answers
13 views
Viewpager in FragmentActivity themed as Dialog
My app has a Gridview. Clicking on the Gridview cell used to open an activity which was themed as a dialog in the manifest. This worked well.
To improvise the app further, I wanted to add a ...
0
votes
1answer
13 views
Jquery UI Dialog Button confirm open URL
I cannot seem to figure this out. Once you click on the button, it should open a dialog to confirm if you want to continue to 'go onto this link' (i.e. google.com) or not. If yes, it should direct you ...
-1
votes
1answer
26 views
Fling inside Dialog Android
Can anyone tell me how to get fling motion event inside CustomDialog or Dialog Theme activity. I have tried by implementing GestureDetector.OnGestureListener , but it doesn't even recognize touch. Any ...
1
vote
1answer
22 views
Execute composite component code only when it is displayed
I have a JSF composite component inside a PrimeFaces dialog that has dynamic=true(dynamic - enables lazy loading of the content with ajax). The component is initialized inside the overriden ...
1
vote
3answers
29 views
How can I create a custom dialog with two datepicker?
I just started to learn Android as a hobby and I would like to create a dialog with two datepicker
final Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.data_picker_dialog);
...
1
vote
3answers
43 views
Custom dialog or custom activity?
I want to use user conformations many times in my app. Like "You're about to do 'this', or 'that'. Are you ok ?" with yes/no buttons, or "Tip : do 'this' or 'that'" with a checkbox to 'don't show ...
0
votes
3answers
20 views
jQuery dialog button confirm before opening URL
I am having difficulty creating a button that will pop up a dialog box to 'confirm' if I want to continue to open the URL link or not. However, when I click on the button "google', it automatically ...
0
votes
0answers
11 views
PySide: hiding a dialog breaks the dialog.exec_()
In my project I have to show people a dialog which can accept or open another dialog.
I start the dialog by the usage of dialog.exec_() which also should make it possible to catch the ...
0
votes
1answer
21 views
Use 2 Title Images in JQUERY UI Dialog based on php
I have a php condition and need two different images to potentially display. Is there some way to create two different titles for different classes? Or maybe a different way in the jquery? Right now ...
0
votes
0answers
32 views
Bash progress dialog with rich progress report
I have dialog installed, where I would like to have a nice progress dialog, like this:
+-------[ title ]--------+
| |
| +-[ console output ]-+ |
| | output line1 | |
| | ...
-2
votes
1answer
28 views
Facebook Share Feed Dialog only working for Admins
After creating a Facebook App, leaving it in Sandbox and attempting to setup a Share button using the Feed Dialog, it seems only FB accounts I've added as Admins are able to use the Share button - all ...
0
votes
0answers
13 views
Set contentDescription for a custom dialog
how can I set a contentDescription to be read by the accessibility service when my dialog is opened? I'm currently using a dialog with a custom layout to display a blocking laoding screen and the ...
2
votes
5answers
64 views
putting “*” values in a dialog box C# forms
I am using the simple Dialog box given in the following link as a crude (that's all I need) password input box:
http://www.csharp-examples.net/inputbox-class/
How do I set the text to display **** ...
0
votes
1answer
17 views
How to trigger open a jQuery UI dialog from a separate page?
I'm not very good with jQuery and I've hit a wall recently. I have a jQuery UI dialog that opens when a user triggers it on index.html. It is hidden on index.html until the user triggers it open. On ...
0
votes
0answers
21 views
Calculating time of scannig to QProgressDialog
I am working on QT creator with c / c + +, and I have a function in which scan a hard drive or pendrive in blocks of 512 with fread until the disk is EOF. What I want to do is calculate the percentage ...
0
votes
0answers
6 views
CQ.form.Selection.PATH_PLACEHOLDER not working?
I having a plain old dialog and want to load data from a servlet, which is invoked by a selector. Just invoking it by calling a URI works fine, but when setting the options property of a selection to ...
0
votes
1answer
19 views
QProgressDialog not run a second time?
I am working with QT creator and he has emerged a problem I could not solve ... I'm on a gui application, where I have a window with a button that calls "Scan" which when pressed runs a ...
0
votes
1answer
57 views
Set custom dialog once into activity
I have listactivity consist of multiple row each row open activity which contain text and two button one of them open infinite gallery the other one open dialog , i have 20 row so i add dialog 20 ...
0
votes
0answers
20 views
How to open primefaces dialog with faces-navigation and ui:composition
JSF 2.0 / PrimeFaces 3.5 / Eclipse Juno /
I have the following structure :
Xhtml template with tags html,head,body.
Inside de body tag I have ui:insert name=conteudo
So I call the first.xhtml ...
0
votes
1answer
18 views
Using a GTK window and waiting for the response
I am using PyGTK inside another application to take user input. I am building an window which has lots of Check Buttons and according to response I need to go ahead.
The problem is that in python ...
0
votes
0answers
22 views
Facebook Dialog Feed - Facebook Application ID
Currently, I would like to share my website link via Share by Facebook function. After google it for a while, it comes to me that Facebook Sharer (which is an easy way to share a link without ...
-1
votes
1answer
39 views
how to make dialog(message) box like facebook [closed]
How can I make dialog box with TABs in the dialog box like this picture(facebook application for android):
Please give your suggestions and answers
1
vote
0answers
34 views
MFC - Adding event handler for dialog button
I have a CView class and a dialog in it, and I want to get some data from the dialog object once the user clicks on its "Accept" button, so I have added an event for the button and its handler in the ...
0
votes
1answer
56 views
Get The Current User ID and Server URL in an HTML Page - CRM 2011
I'm trying to launch a dialog from an HTML page in Microsoft Dynamics CRM 2011, and to be honest I'm not getting anywhere with it.
Here is my HTML page:
<HTML><HEAD>
<META ...
0
votes
1answer
34 views
How to modify the jquery-ui dialog on bootstrap modal
I have this following code for making a confirm dialog using jQuery UI:
function Help(section) {
$("#userpopup").remove();
$("body").append("<div id='userpopup' title='Help' ...
0
votes
1answer
46 views
Android dialog pause activity
I want to show dialog and it will pause activity . To wait user turn on the GPS . After that it can query database to fill the list .
The picture below description what I want to do
And ...
0
votes
0answers
22 views
Printing PDF with dialog window Java
I have big problems with printing PDF with opening dialog window in order to choose printer. PrinterJob class object is responsible for displaying dialog window and printing, but i dont know how to ...
0
votes
0answers
33 views
jQuery dialog… can't make more than 3 popups
Currently I'm using jQuery dialog. It works fine, but I can't make more than 3 popups. Does anyone know what the reason is and how to make more popups?
Maybe I have to edit jQuery dialog's ...
0
votes
1answer
22 views
Problems with PDFRenderer
Do you have any ideas how to print PDF file using standard Java libraries with showing dialog window?
PrinterJob pjob = PrinterJob.getPrinterJob();
if (pjob.printDialog()) {
try ...
0
votes
0answers
23 views
jquery-ui autocomplete results not visible on first open
I am using a jqueryui autocomplete attached to a form input element that first appears dynamically when a jqueryui dialog is created. The problem is that the autocomplete menu does not appear on the ...
1
vote
1answer
33 views
Placeing code in the right area
I have a custom dialog with a list view in it and i have been trying to find my next step in my project. Now i know what it is,OnClcikLister for my list view that will open a activity. Now iv look ...
0
votes
0answers
50 views
jQuery UI Dialog button appears hidden and disabled
I think I'll became mad today.
I'm trying to create a confirm msg when you click a button (in fact an a link) with jQuery UI Dialog.
I'm including jquery-1.6.min.js, jquery-ui-1.9.2.custom.min.js ...
0
votes
2answers
59 views
JQuery UI Dialog box only works once
I have a JQuery UI Dialog box that opens up another page inside it. After I click Cancel and try to click it again, it does not open. I searched online and found an answer that said I had to ...
0
votes
1answer
30 views
Pause an Android activity when a Dialog is shown
I have a question about activity and dialog interaction. In my Android application I have a page that allow the user to scan a QRCode, and when a valid QRCode is scanned the application will open a ...
0
votes
1answer
63 views
Jquery Modal Dialog does not load a page
I have an html page which has below html content
<div id="divBody">
<input type="text" id="txtUrl" value="http://www.google.com" />
<br />
<input type="button" ...
-1
votes
0answers
23 views
Android custom dialog with progressbar(circle) and asynctask
is it possible to make dialog like in web - image preview full screen ?
press on thumb
openning fullscreen dialog with progressbar on it
asynctask getting image(Base64)
on asynctask finish show ...
1
vote
1answer
43 views
Get color property while ColorDialog still open, before confirming the dialog?
What I want to do is while a ColorDialog is opened, get the temporal selected color in the "full open" mode of the Colordialog.
For example in this image I have a white colored picturebox and a ...