web-dev-qa-db-fra.com

attribuer un identifiant à un bouton de dialogue jQuery

Comment puis-je attribuer un identifiant à un bouton de dialogue jQuery. J'ai essayé ce qui suit mais ça ne marche pas

buttons: {
Ok: function() {
id="xyz",
...
30
Hussein

Ce qui suit (apparemment non documenté) fonctionne pour moi avec jQuery 1.8.9:

$("#dlg").dialog({
  buttons :  { 
     "MyButton" : {
         text: "My Button",
         id: "my-button-id",
         click: function(){
             alert("here");
         }   
      } 
   }
});

Le bouton peut être adressé via $ ("# # my-button-id")

65
BerndB

Ce code du site officiel a fonctionné pour moi:

$('#dialog').dialog({
    // properties ... 
    buttons: [{
        id:"btn-accept",
        text: "Accept",
        click: function() {
            $(this).dialog("close");
        }
    }, 
    {
        id:"btn-cancel",
        text: "Cancel",
        click: function() {
            $(this).dialog("close");
        }
    }]
});
19
Andrei

@ BerndB: Merci, cela fonctionne parfaitement et même plus extensible.

$('#loginlink').live('click',function(){
    DC = 'login_box';
    diaOpt = {
        autoOpen : true,
        width : 400,
        title : 'Login',
        buttons: {
            //valiudate login
            'Login' : {
                text : 'Login Now',
                id : 'validateForm',
                click : function(){
                }   
            }
        }
    }

    launchDialog(diaOpt, DC);
});

$('#validateForm').live('click', function(){
    alert('Hellop');
    $("#loginform").validate();
});
3
abayo oyewumi

Essaye ça.

buttons: {
    'MyButton': function() {
        //... configure the button's function
    }

Et le poseur d'identité

$('button:contains(MyButton)').attr("id","xyz");  
2
naveen
$("#OK",{id:'xyz'});

espérons que cela aide

0
Rafay