Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

shadow shown while using mindmup-editabletable.js

i have a editable table using "mindmup-editabletable.js" my problem is condent typing first time is OK. next time when i click the same row for editing first condent shadow is shown only in chrome in other bowers is working good .

enter image description here

$('#table').editableTableWidget({
    cloneProperties: ['background', 'border', ]
});
like image 452
aswathy Avatar asked Sep 05 '16 07:09

aswathy


1 Answers

Do not clone background properties form table cell to the overlaying input, or set the background cell background-color to some solid color.

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

or

#table td {
    background: none #fff;
}
like image 56
skobaljic Avatar answered Oct 09 '22 09:10

skobaljic