Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #18538: Column name to add are not sorted alphabetically #3363

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -1354,6 +1354,7 @@ function createNodeTable(gridId, refresh) {
}

function columnSelect(editOpen) {
dynColumns.sort()
var table = $('#'+gridId).DataTable();
$("#edit-columns").html($("<button class='btn btn-blue' > <i class='fa fa-pencil'></i> Edit columns</button>").click(function(){$("#select-columns").toggle()}))
var select = "<div class='col-xs-12 row form-group'> <div class='col-xs-2' style='margin-left : -15px' > <select placeholder='Select column to add' class=' form-control'>"
Expand Down