mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 09:37:29 +02:00
Merge pull request #12461 from birarda/bug/delete-add-rule
fix badging for changes in tables
This commit is contained in:
commit
e83a933f50
1 changed files with 5 additions and 5 deletions
|
@ -682,11 +682,11 @@ function makeTableHiddenInputs(setting, initialValues, categoryValue) {
|
||||||
} else {
|
} else {
|
||||||
html +=
|
html +=
|
||||||
"<td " + (col.hidden ? "style='display: none;'" : "") + " class='" + Settings.DATA_COL_CLASS + "' " +
|
"<td " + (col.hidden ? "style='display: none;'" : "") + " class='" + Settings.DATA_COL_CLASS + "' " +
|
||||||
"name='" + col.name + "'>" +
|
"name='" + col.name + "'>" +
|
||||||
"<input type='text' style='display: none;' class='form-control' placeholder='" + (col.placeholder ? col.placeholder : "") + "' " +
|
"<input type='text' style='display: none;' class='form-control " + Settings.TRIGGER_CHANGE_CLASS +
|
||||||
"value='" + (defaultValue || "") + "' data-default='" + (defaultValue || "") + "'" +
|
"' placeholder='" + (col.placeholder ? col.placeholder : "") + "' " +
|
||||||
(col.readonly ? " readonly" : "") + ">" +
|
"value='" + (defaultValue || "") + "' data-default='" + (defaultValue || "") + "'" +
|
||||||
"</td>";
|
(col.readonly ? " readonly" : "") + ">" + "</td>";
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue