Page 1 of 1

Timer StyleClass

Posted: 13 Jul 2017, 21:47
by ciaporte
Timer does not write class tag correctly:

Code: Select all

        writer.writeAttribute("class", Timer.STYLE_CLASS + timer.getStyleClass(), "styleclass");
Need a space between component style class and user style class:

Code: Select all

        writer.writeAttribute("class", Timer.STYLE_CLASS + " " + timer.getStyleClass(), "styleclass");

Re: Timer StyleClass

Posted: 13 Jul 2017, 22:41
by Melloware
Thanks for the bug. I just created an issue and fixed it in /trunk.

https://github.com/primefaces-extension ... issues/467