writer.writeClassAttribute("tobago-simpleSheet-cell");
// todo cell markup
// + (rowSelected ? " tobabo-simpleSheet-cell-selected" : ""));
writer.writeIdAttribute(sheetId + "_" + row + "_" + columnIndex);
final String align = (String) column.getAttributes().get(TobagoConstants.ATTR_ALIGN);
writer.writeAttribute(HtmlAttributes.STYLE, "top: 0px; left: " + currentLeft + "px; width: "
+ columnWidths.get(columnIndex) + "px; "
+ (align!=null?HtmlRendererUtil.toStyleString("text-align", align):""), false);
if (column instanceof UIColumnSelector) {
final boolean disabled = ComponentUtil.getBooleanAttribute(column, TobagoConstants.ATTR_DISABLED);
writer.startElement(HtmlConstants.IMG, null);