Lira_Joao
(Lira Joao)
1
Hello,
Is there a way to make this component not put a "." before each item added to the list?
Thank you.
Joao Lira.
Bart
(Bart)
2
Hi,
There's no built-in functionality to remove the bullets, but you can use a TIWClientCode control to add the required CSS.
Example:
TIWClientCode1.CodeType := ctCSS;
TIWClientCode1.Code.Add('ul{list-style: none;}');
Lira_Joao
(Lira Joao)
3
Hello Mr. Bart,
I didn't know about the functionality of 'TTIWClientCode' component. It worked well, thanks!
Joao Lira.
Bart
(Bart)
4
Happy to hear it's working!