|
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.
|
|
In asp button click event, We have to validate the data entered in UI and has to ask the confirmation before save the changes.
How can i do that in asp.net web application?
Started by subramani on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
ImageButton ID="ImageButton1" runat="server" Text="Delete" ImageUrl="button.gif" AlternateText="Delete" OnClientClick='return confirm("Are you sure you want to delete this item?");'/>
As Jason mentions, I think trying to get validation....
|
|
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....
|
Ask your Facebook Friends
|
I have a delete button in a gridview. For those not familiar with asp.net my delete button outputs like so:
<a id="ctl00_cp1_dtgrAllRates_ctl02_lbDelete" class="lb" href="javascript:__doPostBack('ctl00$cp1$dtgrAllRates$ctl02$lbDelete','')"> Delete...
Started by lloydphillips on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You click in order to use its href in the construction of the dialog; and then fire the dialog's){ var theHREF = $(this).attr("href"); $("#dialog").dialog({ bgiframe: true, autoOpen: false, width: 400, height: 200, modal: ....
|
|
Ever since we upgraded to the latest release of Vault Professional, a dialog pops up to make us confirm that we want to delete files from source control. This is very annoying because in a web project, if I delete an ASP.NET page it has three files associated...
Started by by FELKERD on
, 10 posts
by 3 people.
Answer Snippets (Read the full thread at sourcegear):
From Vault 5.1.2 Release NotesAre you performing the delete from inside Visual Studio? If so, which version of VS are you using the delete inside of Visual....
Delete or Exclude?
In Vault 5.1.2, we added a dialog box to confirm.
|
|
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.
|
|
Dialog Summary Total does not adjust for delete rows in repeating section I have a summary field for values in a repeating section, but the total does not adjust when I click the icon to delete a row in the repeating section. Does anyone know what I need...
Started by kingcarol on
, 4 posts
by 1 people.
Answer Snippets (Read the full thread at alphasoftware):
Re: Dialog Summary Total does not adjust for delete rows in repeating section To elaborate further://www.CHSBuilderSoftware.com Re: Dialog Summary Total does not adjust for delete rows in repeating section Well: Dialog....
|
|
We use jQuery modal dialog box to get confirmation from users before they delete an item. The modal dialog works fine as long as there are no YouTube videos on the screen.
If there is a YouTube video the dialog box is displayed beneath the video. I tried...
Started by Gopinath on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To find out the z-index of the Flash movie on the page, you could use... .
Also, make sure the value you are specifying for the z-index is more than that of the Flash movie on the page .
Replace zindex with zIndex ; jQuery takes these properties in camelCase .
|
|
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.
|
|
I have an ASP.NET repeater that shows a list of items with a delete LinkButton.
I want to setup the Delete LinkButtons to show a JQuery Dialog for a confirmation. If the "OK" button is clicked, I want to do the postback.
The obvious problem is that each...
Started by Matthew on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
CssClass="button" Text="Delete"></asp:LinkButton><br /><br /> </ItemTemplate> </asp:Repeater> <script> function ConfirmDelete() { return confirm("Delete this record(){ $(".button").click(function(....
|