|
Hi
When a dialog box pops up there is a "X" in the top right hand corner. I am wondering if there is an option to disable this?
Thanks
Started by chobo2 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A.ui-dialog-titlebar-close{ display: none; }
Changing the CSS will affect other dialogs....
You can set the display to none.
The "X" is placed in an anchor tag with the default class="ui-dialog-titlebar-close ui-corner-all ui-state-focus" .
|
|
My Dialog Box is an jquery Dialog Box, my popup use <%Html.RenderPartial("MyUC")%> to call an usercontroll for Markup for a Dialog Box. How to the controller can call the value in Dialog Box
Answer Snippets (Read the full thread at stackoverflow):
How i catch data in dialog???
Your dialog must contain element....
Aspx
uhm i try your way but it wrong.because i use a jquery dialog to show data, now i want to get data to controller,but in controller not catch data on dialog.
|
|
Hi,
I have developed a tool in .net using c# that will aid in checking in and out particular types of files using Team Foundation Server. There is a point in time though that my tool really needs to know what the dialog result is from when a user responds...
Started by danielea on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This is somewhat.
Hook to and the WH_MSGFILTER hook to listen for the button clicks on the dialog.
|
Ask your Facebook Friends
|
How can I dynamically set the text of the dialog box that I'm opening? I've tried a few different things but they all respond with an empty dialog box.
Here is my current try:
$('#dialog').text('Click on the link to download the file:
'.data); $('#dialog...
Started by acedanger on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Use the plus symbol to concatenate strings:
$('#dialog').text('Click on the link to download the file: ' + data); $('#dialog').dialog("open");
dialog("open"); isn't a valid jquery UI method, try putting a div inside your ....
|
|
I have a dialog box that has AJAX loaded content.
I want to have two buttons on the dialog box: a next and previous, which will load new AJAX content into the dialog box.
Is it better to re-use the current dialog box, or destroy it and create a new one...
Started by Paul on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The students_ids variable are passedThe dialog can....
In the example below, I needed a dialog box to page through different students.
Or previous, the dialog box is destroyed and a new one is dynamically created again.
|
|
Hai Guys, How to find which button was clicked by the user on a print dialog box
Started by Pandiya Chendur on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Even with events.
As I know you don't have access to Application Dialog boxes such as the print dialog.
|
|
I have an ActiveX control in IE (7). When it shows a dialog box, the dialog box is not showing in XP visual style. I have tried embedding manifests to no avail. Anybody got any idea? by the way, the dialog boxes were implemented using wtl.
Answer Snippets (Read the full thread at stackoverflow):
I think this happens as a result.
You might want to try Skinning a WTL dialog over on Code Project.
|
|
I would like to put a link to a webpage in an alert dialog box so that I can give a more detailed description of how to fix the error that makes the dialog box get created.
How can I make the dialog box show something like this:
There was an error. Go...
Started by Keng on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
If you really wanted to, you could that uses the YUI library, but you don't have to use YUI to do it:
YUI-based alert box - replace your ugly javascript alert box
You can....
With IE you can open it modal.
That looks like a dialog.
|
|
I have a jQuery dialog box on my website. I give a div on the page the "dialog" id it's contents become the contents of the dialog box. However, when the page is loading, this div appears at the top of the page and looks bad. Does anyone know how to deal...
Started by Brian on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I tested to be sure, and this method worked with jQuery UI 1.7.2
Assuming that the dialog is changing....
Just hide your div via your CSS file:
#dialog {display: none}
This will not affect its actual display when the dialog is opened.
|
|
About Gtk Dialog box Behavior...
I am using GtkBuilder +Glade to display a top level window and dialogs in it...
builder = gtk_builder_new(); gtk_builder_add_from_file( builder, "test.glade", NULL ); windowPtr = GTK_WIDGET( gtk_builder_get_object( m_builder...
Started by PP on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Also, you will need to add this line to your): dialog = self.builder.get_object("dialog1") label = self.builder.get_object("label2") print label.get.
This will then hide your dialog instead of destroying it.
|