Hi.
I’d love the ability to animate a DGV row. The “movement” animations (bounce, tada) may not be appropriate, but I would like to be able to make a “featured” row glow yellow temporarily and then return to normal.
Cheers,
Neil
I want to same animation for accordionPanel selected tab, how can I do this ?
Thanks
Try this in default.html or put in a css. It’s just an example. You’ll have to create the animation or style that you want to use. There are infinite possibilities with css.
<style>
 .qx-table-row-focused-selected-odd-borderBoth,
 .qx-table-row-focused-selected-even-borderBoth {
 z-index: 99999 !important;
 animation: glowing 3000ms infinite;
 }
@keyframes glowing {
 0% {box-shadow: 0 0 -10px #c4a300;}
 40% {box-shadow: 0 0 20px #c4a300;}
 60% {box-shadow: 0 0 20px #c4a300;}
 100% {box-shadow: 0 0 -10px #c4a300;}
 }
 </style>
            Please login first to submit.
