From dd5da051488c2be1de5762f29630efdaad4fd8c8 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 14 Aug 2021 12:00:34 +0530 Subject: [PATCH] webapp common.js: updated serializeTableData() to use select tags. --- DnsServerCore/www/js/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DnsServerCore/www/js/common.js b/DnsServerCore/www/js/common.js index 79c72032..459941d4 100644 --- a/DnsServerCore/www/js/common.js +++ b/DnsServerCore/www/js/common.js @@ -317,7 +317,7 @@ function sortTable(tableId, n) { function serializeTableData(table, columns) { - var data = table.find('input:text'); + var data = table.find('input:text, select'); var output = ""; for (var i = 0; i < data.length; i += columns) {