1

i am using this template http://www.keenthemes.com/preview/metronic/index.html

which provides a nice timepicker in the right corner.

However i am unable to submit anything if the user presses the submit button.

This is the library which they use and the exact example http://www.dangrossman.info/2012/08/20/a-date-range-picker-for-twitter-bootstrap/

how can i submit the picked range if the user clicks on the submit button or any given link like "last 7 days"?

any formsubmit, listener or clickfunction would be fine ... but i dont get it working.

4

1 に答える 1

0

コントロールには 2 つのテキスト ボックスがあるため、それらが更新されます。ただし、アプリケーションでそれを使用する場合は、コントロールの「onApply」メソッドによって更新されるテキスト ボックス (またはテキスト ボックス) を使用できます。私たちの場合、1 テキストボックスを使用し、範囲で更新しました。

$('#filterDates').on('apply.daterangepicker', function (ev, picker) {
    try {
        $('#txtStartDate').val(picker.startDate.format('DD MMM YYYY'));
        $('#txtEndDate').val(picker.endDate.format('DD MMM YYYY'));
        //this is what we actually use
        $('#txtFilterDates').val(picker.startDate.format('DD MMM YYYY') + ' - ' + picker.endDate.format('DD MMM YYYY'));
    } catch (ex) {
        console.error(ex);
    }
});
于 2014-11-18T09:33:28.107 に答える