Author Topic: Blinking Cell background color  (Read 502 times)

roland.kovari@acps-automo

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 11
    • View Profile
Blinking Cell background color
« 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 ....

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: Blinking Cell background color
« Reply #1 on: March 01, 2022, 11:04:01 am »
Please check this updated example for blink text:

https://paramquery.com/pro/demos/condition_style

roland.kovari@acps-automo

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 11
    • View Profile
Re: Blinking Cell background color
« Reply #2 on: March 01, 2022, 12:46:01 pm »
Thank you!