I have a strange error in a dialog, I load the dialog fine, but whenever I assign a button to it, although a button will be displayed on it, it will not display the name of the button, Here is my code that successfully starts the dialog ...
jQuery('#'+message_div_id).dialog({ modal: ui_popup_modal , width: ui_popup_width , height: ui_popup_height , resizable: false , draggable: false , buttons: { "Ok": function() { jQuery( this ).dialog( "close" ); } } });
This is the html result from bugzilla after loading the popup ...
< button type="button" text="Ok" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false">< span class="ui-button-text">< /span>< /button>
The span class is an area that should contain text, but as you can see, it is not. Any ideas?
Vin
source share