0

私は Jquery 1.8.3 を使用していますが、ダイアログ ボックスで、ユーザーが選択ボタンをクリックすると (ボタン テキストを [適用] に変更し、ダイアログ ボックス内に新しい div を表示します)、ボタン テキストが [適用] の場合、ボタンサイズが異常に小さくなります。

何か案は?

ErrorCodeDialog = $("#treeview").dialog(
{ 
    closeOnEscape: true, 
    stack: false, 
    autoOpen: true, 
    modal: true, 
    resizable: false, 
    draggable: true, 
    title: 'Select and input Error details', 
    width: 480, 
    height: 500,

    buttons: 
    { 
        Select: function () 
        {
            var btnText = '';
            $('.ui-dialog-buttonpane :button').each(function () 
            {
                if ($(this).text() == 'Select') 
                {
                    btnText = 'Select';
                    $(this).text('Apply');
                    $("#errorCodes").attr("style", "display:none;");
                    $("#inputReps").attr("style", "display:inline;");
                }
                else if ($(this).text() == 'Apply') 
                {
                    btnText = 'Apply';
                    $(this).text('Select');
                    $("#errorCodes").attr("style", "display:inline;");
                    $("#inputReps").attr("style", "display:none;");
                }
            });
4

0 に答える 0