HI, There is an inbuilt facility to add the button bar at the bottom. I am not sure if it's the same thing you are looking for. See the example on,
http://www.jqueryui.com/demos/dialog/#modal-confirmation <http://www.jqueryui.com/demos/dialog/#modal-confirmation>See the sample code snippet for instantiation: <script type="text/javascript"> $(function() { $("#dialog").dialog({ bgiframe: true, resizable: false, height:140, modal: true, overlay: { backgroundColor: '#000', opacity: 0.5 }, buttons: { 'Delete all items in recycle bin': function() { $(this).dialog('close'); }, Cancel: function() { $(this).dialog('close'); } } }); }); </script> On Wed, Aug 5, 2009 at 3:32 PM, adexcube <[email protected]> wrote: > > Hi, how can I place the button bar at the bottom of dialog? > On the page http://docs.jquery.com/UI/Dialog#theming states clearly > but I can't find any example. > It says: "A bottom button bar and semi-transparent modal overlay layer > are common options that can be added. " > > How? > > thanks > > > -- URL: http://sites.google.com/site/spyderhoodcommunity --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
