How to right align the cell values of one column in a table?

You could add a custom CSS classname to your table (in its properties). Then you could add a CSS class like:

.myTable .dojoxGridRowTable td:nth-child(2) {
    text-align: center !important;
}

This will center the 2nd column of the table with my custom tag: