Re: Right justify in DataTable

2009-10-14 Thread Swanthe Lindgren

Try this (cut and pasted from the inmethod-grid-examples app)

new PropertyColumn(new ResourceModel(NumberCol), NumberCol, 
NumberCol) {

   private static final long serialVersionUID = 1L;
   @Override
   public String getCellCssClass(IModel rowModel, int rowNum) {
   return myCssClassThatRightJustifies;
   }
   };

//Swanthe

Swarnim Ranjitkar wrote:
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);
 		 	   		  
  




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Right justify in DataTable

2009-10-13 Thread Swarnim Ranjitkar

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);