On 18 pro, 17:50, John LaBanca <
jlaba...@google.com> wrote:
> You cannot embed the ScrollPanel widget in a Cell, but you can wrap the
> table element in a div with a fixed height and set overflow to auto, which
> will add scrollbars if needed.
> sb.appendHtmlConstant("<div style=\"height:100px;overflow:auto;\">");
> sb.appendHtmlConstant("<table>");
>
> Alternatively, you could use a multiple select box instead of checkboxes.
> It wouldn't include checkboxes, but it allows multiple selection.
> <sb.appendHtmlConstant("<select multiple=\"multiple\" size=\"3\">");
>
> Thanks,
> John LaBanca