Reputation: 11
I want to dispaly a string with line breaks in a gwt-celltable column.How can I do it? Can someone help me.
strBuilder.append("line 1 ");
strBuilder.append("line 2");
Upvotes: 0
Views: 576
Reputation: 122026
Try
strBuilder.append("line 1").append("</br>");
strBuilder.append("line 2");
Upvotes: 1