If I user DefaultDataTable to display table. Is there a way justify the numberic column. eg. I want NumberCol to be right justified then left
IColumn[] columns = new IColumn[2];
columns[0] = new PropertyColumn(new Model("NumberCol"), "NumberCol",
"NumberCol")
columns[1] = new PropertyColumn(new Model("Last Name"), "name.last",
"name.last");
DefaultDataTable table = new DefaultDataTable("datatable", columns,
userProvider, 10);
