choiceGrid.getColumnFormatter().setWidth(0, (kPackageColWidth-3) + "px");
choiceGrid.getColumnFormatter().setWidth(1, (kActionCol1Width+3) + "px");
choiceGrid.getColumnFormatter().setWidth(2, kActionCol2Width + "px");
choiceGrid.addStyleName(RESOURCES.styles().choicesGrid());
Label resolutionLabel =new Label("Resolution:");
resolutionLabel.addStyleName(RESOURCES.styles().resolutionLabel());
choiceGrid.setWidget(0, 0, resolutionLabel);
snapshotChoice_ = new RadioButton("snapshot", "Update Packrat (Snapshot)");
snapshotChoice_.addStyleName(RESOURCES.styles().choiceButton());
choiceGrid.setWidget(0, 1, snapshotChoice_);
snapshotChoice_.addValueChangeHandler(new ValueChangeHandler<Boolean>() {