如何在极端右侧设置日历位置

时间:2016-03-11 08:33:18

标签: handsontable

我正在使用日期列位于极右位置的表格。

当我点击它时,我看不到整个日历。

hot = new Handsontable(container, {
    data: getCarData(),
    colHeaders: ['Car', 'Model', 'Registration test', 'Price', 'Registration date'],
    columns: [
      {
        type: 'autocomplete',
        source: ['Audi', 'BMW', 'Chrysler', 'Citroen', 'Mercedes', 'Nissan', 'Opel', 'Suzuki', 'Toyota', 'Volvo'],
        strict: false
      },
      {
        // 2nd cell is simple text, no special options here
      },
      {
        type: 'text'
      },
      {
        type: 'numeric',
        format: '$ 0,0.00'
      },
      {
        type: 'date',
        dateFormat: 'MM/DD/YYYY',
        correctFormat: true,
        defaultDate: '01/01/1900'
      }
    ]
  });

请检查js小提琴。

http://jsfiddle.net/hemantmalpote/Lc8r4n6z/

0 个答案:

没有答案