11
« on: March 01, 2022, 12:17:51 am »
Is it feasible to create a cell with a blinking background?
render: function (ui) {
if ((!ui.rowData.pq_grandsummary) && (!ui.rowData.summaryRow))
{
this.attr({rowIndx: ui.rowIndx, dataIndx: 'partner', attr: { title: ui.rowData.partner + '\nBankszámlaszám: ' + ui.rowData.bankszamlaszam, style: ((blink == 1) ? 'animation: blinkingText 2s infinite;' : '') } });
}
}
You do not do this with this style.
"animation: 2s ease 0s infinite normal none running blinkingText;" This is displayed by querying the cell.
Thanks ....