|
I am using QT Dialogs in one of my application. I need to hide/delete the help button. But i am not able to locate where exactly i get the handle to his help button. Not sure if its a particular flag on the QT window.
Kindly let me know if you know how...
Started by AJ on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So to make sure the icon of the dialog....
For instance you can specify only the TitleHint);
setWindowFlags(flags);
But by doing this sometimes the icon of the dialog gets reset.
This with the WindowFlags parameter to the dialog constructor.
|
|
I am try to use JQuery UI Dialog to replace the ugly javascript:alert() box. In my scenario, I have a list of items, and next to each individual of them, I would have a "delete" button for each of them. the psuedo html setup will be something follows:...
Started by xandy on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Open'); }
Dialog div:
<div id="confirmDelete" title="Delete User?"></div>
Image link delete_path = $(this).attr('href'); $('#confirmDialog a.ok').unbind('click'); // just in case the cancel link // is not the only way....
|
|
Easier way to delete row from dialog or grid? I have a read-only grid which brings up a dialog when user needs to edit the data.
I would like to have the ability for the user to delete the row via a button on the read-only grid. I watched Selwyn's video...
Started by askoog66 on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at alphasoftware):
Do you to the save and undo icon? Re:....
Thank you.
Re: Easier way to delete row from dialog or grid? One way to do this Andrew is to make the grid Re: Easier way to delete row from dialog or grid? You are, of course, correct.
|
Ask your Facebook Friends
|
How do you launch a jquery dialog when you click on a link
this doesn't seem to work
<script type="text/javascript"> $(document).ready(function() { $("a.To").click(function(e) { e.preventDefault(); $("#dialog").dialog({height:300}); });
in the body...
Started by oo on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
*/ $("#delete-....
The box is opened * by a call to dialog("open") in the delete link.
* This creates the box at domready.
First you should instantiate a dialog.
I did this recently for confirming delete links in my cms.
|
|
Hi,
I'm looking for a way to submit information captured in a JQuery Dialog to the server in ASP.Net. I originally thought it would work with a 'hidden' asp button, but the click doesn't seem to be submitting the form. Here's the code I have so far:
&...
Started by Paul on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Add a form to the dialog then submit the form using JavaScript when you close the dialog or click.
|
|
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....
This will then hide your dialog instead of destroying it.
In glade, set the callback for "delete-event" of your GtkDialog to gtk_widget_hide_on_delete .
|
|
All- I know this has been asked, but the previous solutions don't seem to apply to my situation.
I have a simple table with a number of records in each row, with the final column being a delete hyperlink. I'm trying to use the dialog to pop up and confirm...
Started by EvilPluto on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Basically, ....
It seems most likely that the problem lies in the fact that the actual dialog div isn't actually is literally the only div which is used as a dialog) at the same time that you say you're afraid to reference that div by an ID.
|
|
I'm trying to use the jQuery UI Dialog to display a confirmation prior to executing the action...in this case navigating to the selected link....but in another case, I might like to use AJAX delete.
I thought I could pass the action as parameter of the...
Started by timborden on
, 7 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
="' + title + '">' + prompt + '</div>'); $("#confirm").dialog({buttons: {'Proceed': function(){ $(this).dialog('close'); action(); }, Cancel: function(){ $(this).dialog('close'); }}}); } else { $("#confirm").html(prompt);....
|
|
I like the "Add Connection" or "SQL Connection" dialog that is in Visual Studio in Server Explorer window. I also like the one in CodeSmith. I would like to have that same dialog or simular functionality in my windows application.
I need it to work with...
Started by Bobby Ortiz - DotNetBob on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit ....
Here you go:
SQL Connection Dialog
http.
I will not delete this answer because of the project is still a good start if you want to make your own dialog nothing when queried for an open source add connection dialog.
|
|
I have an ASP.NET website which uses the jQuery dialog to present the user with a downloads terms dialog. Once the user has agreed to the terms in the dialog, the I perform a server-side postback which issues a Response.Redirect call to a page on another...
Started by Cleggy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
First of all the initialization of the dialog, qhere did you redirect the user and in that redirect you redirect to the previous page (the one that have the dialog) so (document).ready is fired....
Of things that you are probably doing wrong.
|