Fixes:16611 - Renaming exported databases/tables/columns checkbox
Signed-off-by: Saksham Gupta <shucon01@gmail.com>
This commit is contained in:
parent
79c84756bb
commit
5050cd04b1
@ -869,12 +869,17 @@ Export.aliasToggleRow = function (elm) {
|
||||
}
|
||||
};
|
||||
|
||||
Export.aliasRow = null;
|
||||
|
||||
Export.addAlias = function (type, name, field, value) {
|
||||
if (value === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
var row = $('#alias_data tfoot tr').clone();
|
||||
if (Export.aliasRow === null) {
|
||||
Export.aliasRow = $('#alias_data tfoot tr');
|
||||
}
|
||||
var row = Export.aliasRow.clone();
|
||||
row.find('th').text(type);
|
||||
row.find('td').first().text(name);
|
||||
row.find('input').attr('name', field);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user