TWebTableControl Html texts removed

Hi,
i am working with TWebTableControl for my project and i noticed when i use any html tags as a text its removing it.

Example:


Versions:
image

image

is there any solution for me or i have to wait for update?

Thanks for reviewing this post.

We investigated this and we've applied a fix that will be included in the next update.

Workaround for now:

var
  el: TJSHTMLElement;
begin
  el := webtablecontrol1.CellElements[Col,Row];
  el := TJSHTMLElement(el.firstChild);
  showmessage(el.innerHTML);
end;
1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.