Сообщение от Neo54213
|
как получить этот самый fieldName?
|
function drawTHs() {
var $thead = $("section #orderstable thead");
headers.forEach(function(text, i) {
var fieldsName = fieldsNames[i];
var $th = $("<th>", {
click: function() {
superSort(fieldsName)
},
text: text,
data: {
id: i
}
});
var $indicatorImage = $("<img>", {
alt: "индикатор сортировки",
"class": "indicator-image"
});
$th.prepend($indicatorImage);
$thead.append($th)
})
};