Hi Yavor
Thanks for this, its certainly helped with my problem. I now get the progress bar rendered in each item, but when I try to add the value
itemRenderer: function (element, item, dataAdapter)
{
var progressBar= document.createElement(‘div’);
progressBar.classList.add(‘progressBar’);
element[0].appendChild(progressBar);
$(element).append(progressBar);
setTimeout(() => {
$(“.progressBar”).jqxProgressBar({ width: 200, height: 10, value: dataAdapter.progress});
alert(dataAdapter.progress);
}, 100);
$(element).find(‘.jqx-kanban-item-color-status’).html(‘<span style=”line-height: 23px; margin-left: 5px; color:white;”>’ + dataAdapter.text + ‘</span>’);
},
My alert shows each value correctly, but the progress bars all use the value entered for the last one.