$(getElement()).as(Chosen).destroy()
.chosen(options, ensureChosenHandlers());
}
protected GQuery getChosenElement() {
ChosenImpl impl = $(getElement()).data(CHOSEN_DATA_KEY,
ChosenImpl.class);
if (impl != null) {
return impl.getContainer();
}
return $();
}