Do you mean in the space where the dialog's buttons appear?
that div has the class "ui-dialog-buttonpane", i think you can use
that as anchor:
// Dialog
$('#dialog').dialog({
autoOpen: false,
modal: true,
width: 600,
buttons: {
"Ok": function() {
$(this).dialog
("close");
},
"Cancel": function()
{
$(this).dialog
("close");
}
}
});
$(".ui-dialog-buttonpane", $
("#dialog").parent() ).append('<img src="loading.gif" alt="loading"/
>');
On Oct 8, 3:46 pm, mvbaffa <[email protected]> wrote:
> H,
>
> How can I show a loading gif in the button bar of the dialog.
>
> Thanks in advance
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---