0

もともと編集可能な日付のみを必要とするコードを継承しましたが、これは jquery datatablesjquery-editable、およびdatepickerを使用して実装されました。

これは、日付のみの現在の作業コードです

$('.editdate')
    .editable(function (value, settings) {
    if ((value == null) || (value == '')) {
        return ($(this)
            .parent()
            .find('label')
            .text());
    }
    hasBeenEdited(this);
    return (value);
}, {
    type: 'datepicker',
    datepicker: {
        dateFormat: 'mm-dd-yy',
        changeMonth: true,
        changeYear: true
    }
});

現在、日付に時刻を含めるように求められており (サーバー側のデータベースとモデルがタイムスタンプに変更されました)、datetimepickerアドオンを取り込もうとしています。

editable 以外で実行する$(".editdatetime").datetimepicker()と期待どおりに動作しますが、 editable 関数を使用して実行しようとすると次のエラーが発生します

firefox: TypeError: $.editable.types[settings.type] is undefined

chrome: Uncaught TypeError: Cannot read property 'plugin' of undefined 

これは私の編集可能ですdatetimepicker

$('.editdatetime')
    .editable(function (value, settings) {
    if ((value == null) || (value == '')) {
        return ($(this)
            .parent()
            .find('label')
            .text());
    }
    hasBeenEdited(this);
    return (value);
}, {
    type: 'datetimepicker',
    datetimepicker: {
        dateFormat: 'mm-dd-yy',
        changeMonth: true,
        changeYear: true,
        showHour: true,
        showMinute: true
    }
});

ガイダンスやヘルプは大歓迎です

4

1 に答える 1

1

datetimepickerそのため、入力タイプを編集可能に追加する必要があることに最終的に気付きました。だから私は以下を使用してこれを解決することができました:

$.editable.addInputType( 'datetimepicker', {

    /* create input element */
element: function (settings, original) {
    var form = $(this),
        input = $('<input />');
    input.attr('autocomplete', 'off');
    form.append(input);
    return input;
},

/* attach jquery.ui.datetimepicker to the input element */
plugin: function (settings, original) {
    var form = this,
        input = form.find("input");

    // Don't cancel inline editing onblur to allow clicking datetimepicker
    settings.onblur = 'nothing';

    datetimepicker = {
        onSelect: function () {
            // clicking specific day in the calendar should
            // submit the form and close the input field
            form.submit();
        },

        onClose: function () {
            setTimeout(function () {
                if (!input.is(':focus')) {
                    // input has NO focus after 150ms which means
                    // calendar was closed due to click outside of it
                    // so let's close the input field without saving
                    original.reset(form);
                } else {
                    // input still HAS focus after 150ms which means
                    // calendar was closed due to Enter in the input field
                    // so lets submit the form and close the input field
                    form.submit();
                }

                // the delay is necessary; calendar must be already
                // closed for the above :focus checking to work properly;
                // without a delay the form is submitted in all scenarios, which is wrong
            }, 150);
        }
    };

    if (settings.datetimepicker) {
        jQuery.extend(datetimepicker, settings.datetimepicker);
    }

    input.datetimepicker(datetimepicker);
}
});
于 2013-09-25T14:56:38.800 に答える