使用mindmup-editabletable.js时显示的阴影

时间:2016-09-05 07:07:26

标签: javascript jquery

我有一个可编辑的表使用" mindmup-editabletable.js"我的问题是第一次打字输入是可以的。下次当我点击同一行进行编辑时,第一个condent阴影只显示在chrome中,其他的bowers工作正常。

enter image description here

$('#table').editableTableWidget({
    cloneProperties: ['background', 'border', ]
});

1 个答案:

答案 0 :(得分:1)

请勿将表格单元格的背景属性克隆到覆盖的input,或将背景单元格background-color设置为某种纯色。

$('#table').editableTableWidget({
    cloneProperties: ['border']
});

#table td {
    background: none #fff;
}