Skip to main content

Questions tagged [modal-dialog]

Refers to a graphical dialog used to display important information to the user. These dialogs appear above all other content, blocking application flow until user input is received.

0 votes
0 answers
78 views

Laravel 11 Livewire Close Modal Not closing

I know $this->dispatchBrowserEvent('close-modal') changed to $this->dispatch('close-modal') but it still isn't closing. It deletes my item but the modal isn't closing. Index.php public ...
ToddM's user avatar
  • 79
1 vote
2 answers
39 views

How to process string returned by modal dialog into an object

I need to process JSON files that are over 50,000 characters long. To do this, I want to use a modal dialog text area. I have a dialog with two text areas. The first is for the original json file to ...
Einarr's user avatar
  • 332
1 vote
0 answers
40 views

React-Native Modal behaving differently in iOS vs Android

In my react-native app the modal opens up only in few screens in iOS but all the necessary screens in Android. I have a navigator setup the following way import { createStackNavigator } from '@react-...
Zephyr's user avatar
  • 2,082
0 votes
0 answers
27 views

Creating an Asynchronous IDialogWindow in C# to Avoid Blocking Threads

I've developed an IDialogWindow within a C# application to prompt users for input, such as "OK" or "Cancel," and it currently operates synchronously, halting any further thread ...
Arnau's user avatar
  • 177
0 votes
1 answer
37 views

Bootstrap Modal header css variable not defined - var(--bs-modal-header-padding) not defined

I am not using modal-header inside modal I want to use modal-header css property, inside normal div But css property has values when its inside modal but it shows variable not defined when used in ...
Anonymous's user avatar
0 votes
0 answers
33 views

Solid JS Trouble Passing Information from Child to Child

I've created a card component that has its background image set from its parent component. These cards act as buttons to open modals with more details and share an image. I don't want the modal ...
Todd Holford's user avatar
0 votes
1 answer
23 views

Raising a child window (QWidget) from QDialog that can be moved?

When reading https://www.pythonguis.com/tutorials/creating-multiple-windows/ I may have understood the following too literally: In Qt any widget without a parent is a window. This means, to show a ...
sdbbs's user avatar
  • 5,121
0 votes
0 answers
46 views

react how to show data on modal popup,

i got data from backend, variable is getRc. and i want to show the data from getRc on modal popup. how should i do? function SCB0002_001_2P({ data, onClose, onSubmit, modalSelect }: Props) { const [...
오���석's user avatar
2 votes
1 answer
99 views

WINAPI Esc key handling in Dialog

There had been written multiple posts on internet about the people annoyed by default ESC key handling in dialog boxes, but this is what I actually expect but cannot have. In shorts my dialog ...
odo's user avatar
  • 59
0 votes
0 answers
16 views

State not updating in Atlassian Modal using hooks

I'd like to show a flag (a separate component) on clicking Delete button. But state doesn't get updated, so flag isn't showing up. What might be the cause? export const Modal: FC<Props> = ({ ...
isosceles triangle's user avatar
0 votes
0 answers
26 views

Replace deprecated Angular ComponentFactoryResolver

How can I rewrite the code so it's nt using deprecated ComponentFactoryResolver and still does the same stuff (open a modal in the body)? import { ComponentFactoryResolver, Inject, Injectable, ...
Stanislav Semashko's user avatar
0 votes
0 answers
9 views

Trying to make a cart popup using ajax but then after everything my response is shown on the browser dev console but displaying on my page

I'm new to web development and learning how to create restaurant website using laravel. My issue is that I want to make a popup for cart the course I'm using make use of Ajax to get it done everything ...
Jesus Edward's user avatar
-1 votes
1 answer
42 views

I'm trying to add text to a dialog box dynamically with Javascript but its not working

const myLibrary = ['Harry Potter','The God of Small Things']; function Book() { // the constructor... for (let book of myLibrary) { // Add book element to a dialog box. Create a dialog box ...
manish's user avatar
  • 1
0 votes
1 answer
107 views

How to pass a form into Angular Material dialog

I need to create a reusable form dialog to visualize different forms. I am using Angular 17 and Angular Material. In my component I am trying to define a form like that: <form #myForm="ngForm" (...
Plamen Draganov's user avatar
0 votes
1 answer
54 views

How can I prevent window titles from overlapping in a Maui app with shell navigation and modals?

I'm developing a Maui app with shell navigation and modals, and I'm encountering an issue with overlapping window titles. When navigating from the main page to another page using shell navigation, a ...
Dragon Slayer's user avatar

15 30 50 per page
1
3 4
5
6 7
805