Questions tagged [simpledialog]

SimpleDialog2 is a re-imagining of the original SimpleDialog - it's purpose is to provide an easy programmers interface to dialog popups.

SimpleDialog2 is a re-imagining of the original SimpleDialog - it's purpose is to provide an easy programmers interface to dialog popups.

39 questions
0
votes
2 answers

How do I change the icon of a simple dialog in tkinter, Python

Not sure how to change the icon of a simple dialog window. I try to use .bitmap but doesn't work. Need Help
GCIreland
  • 5
  • 1
0
votes
1 answer

Why simpledialog doesn't work with mttkinter?

When trying to make my simpledialog thread safe by using mttkinter, i get an error. But when using the tkinter it works perfectly. Can anyone help please. Thanks in advance. from mttkinter import mtTkinter as tk from mttkinter import…
0
votes
0 answers

askstring execution after pandastable: _tkinter.TclError: invalid command name ".!toplevel.!table"

I might be missing out on some sort of 'close' on the pandastable Table function, but I am not sure. A quick code to regenerate the error (though the program continues to function, the error still bothers me): import pandas as pd import…
Harsh Khad
  • 89
  • 1
  • 7
0
votes
1 answer

Display data from sqlite to simpledialog in flutter

I want to display data from sqlite to SimpleDialog widget showDialog( context: context, barrierDismissible: true, builder: (BuildContext context) { return SimpleDialog( title: const Text('Select Category '), children:…
0
votes
1 answer

Navigator.pop won't close the simpledialog in flutter

I'm building android app using flutter. I have a problem to close the simple dialog programmatically. Now I have a stateful page named ListVessel. This page contains listTile from array otherVessels. Below is the code for this page. class…
0
votes
1 answer

Tkinter SimpleDialog Timeout

I have a program that requires input to a module while it is running, so I am implementing a simple Dialog box to get input from the user to use in my Tkinter program. But I also need it to timeout when running the module as a console program, to…
David Long
  • 19
  • 5
0
votes
2 answers

SimpleDialog not displaying in Flutter

I'm developing an app using Flutter. I need to show a dialog box once a certain condition is fulfilled. When it's fulfilled, the dialog box is not shown, but the screen is dimmed as if the dialog box is being shown. showEndGamePopUp() { …
Shreya
  • 362
  • 5
  • 15
0
votes
1 answer

Creating a simpledialog with tk that has a variable number of inputs and then outputting them

Im trying to create a simpledialog box in which you can input numbers. The number of inputs however does depend on a dataset, technically people are using it to input rows into a dataset. I cannot figure out how to get it to work. Ive tried putting…
0
votes
2 answers

Tkinter: Put simpledialog.askinteger in a toplevel box

I have trouble using the simpledialog widget within a toplevel widget. The code extract below results in an empty pop-up window (entitled "Blocked fields"), a second pop-up window with the correct simpledialog (also working fine) and the main game…
A.K
  • 11
  • 4
0
votes
0 answers

Create Simple list Dialog With Default Checked item

I'm trying to showing a simple list dialog, with the default selected item by gray background. I know we can use setItems() to show the list, but how do I set the checked item background to gray? AlertDialog.Builder builder = new…
0
votes
1 answer

Simple dialogbox multitasking

How do ask a string and a integer question in a single simpledialogbox in tkinter without opening another simpledialogbox from tkinter import * from tkinter import simpledialog simpledialog. askstring("name", "what is your name ") Mainloop()
0
votes
1 answer

Python tkSimpleDialog Fullscreen and Focus Over Fullscreen Parent

I am having a problem with getting tkSimpleDialog to take focus over my fullscreen window GUI. I have a GUI that I am trying to use a dialog window to use as an admin password to close the GUI (like a kiosk mode app) using root.quit(). The problems…
J.kors
  • 61
  • 7
0
votes
2 answers

How to auto-activate a tkinter simpledialog pop-up window?

I have this function inside one of my python scripts which throws up a Tkinter simple dialog screen to ask for some simple user-input. The function works. However, there are 2 problems with it. It opens up two windows, while all I need is one. But…
Montmons
  • 1,330
  • 10
  • 40
0
votes
1 answer

Worklight Simple Dialog Android prevent click outside

I am using WL.SimpleDialog.show() for showing messages. In my latest android version , if i am clicking outside the element, the Dialog box disappears. Could you please help how to fix this issue. If i am clicking outside , the dialog box should not…
0
votes
1 answer

IBM Worklight SimpleDialog platforms limits

I am using Worklight 6.0 for an application working on 4 platforms (iOS, Android, Blackberry and Windows Phone 8). While using WL.SimpleDialog I can notice today that the handler button option/callback does not work on Blackberry 10. Also when…
WiPhone
  • 683
  • 6
  • 23