ComboBox combo = (ComboBox) getBoundUnit(Item.rsShard);
combo.value = 0;
combo.items = getRouterNode().getShardNames();
combo.structureComponent();
if (!dialog.show())
return;
final BasicDBObject cmd = new BasicDBObject("removeshard", getStringFieldValue(Item.rsShard));
final DB db = getRouterNode().getMongoClient().getDB("admin");
new DbJobCmd(db, cmd, this, null).addJob();