public Column(int id, boolean sortable, String label, String width, Renderer renderer) {
this(id, sortable, label, false, width, renderer);
}
public Column(int id, boolean sortable, String label, boolean asHTML, String width) {
this(id, sortable, label, asHTML, width, new StringRenderer());
}