TTIWHTMLList

Hello,


 
   Is there a way to make this component not put a "." before each item added to the list?

   Thank you.

   Joao Lira.

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;}');

Hello Mr. Bart,


   I didn't know about the functionality of 'TTIWClientCode' component. It worked well, thanks!

   Joao Lira.

Happy to hear it's working!