//if we have to do it lazy, we will hit up the server when the widget gets focus
if (dropData.fixedList == null && dropData.queryExpression != null) {
DeferredCommand.addCommand(new Command() {
public void execute() {
LoadingPopup.showMessage(cs.RefreshingList());
RepositoryServiceFactory.getService().loadDropDownExpression(dropData.valuePairs, dropData.queryExpression, new GenericCallback() {
public void onSuccess(Object data) {
LoadingPopup.close();
String[] list = (String[]) data;
doDropDown(currentValue, list, box);
}