Hi,
I'm am using several form on the page in different tab.
All of the form use dropdown which are enhanced by jQuery.chosen (by selecting " Enable enhanced user interface" on the element).
My problem is: the dropdown which are visible are ok, but the ones which are inside the tab aren't.
In gravityform.js I saw :
if(element.is(":visible") && element.siblings(".chzn-container").length == 0){
jQuery(this).chosen({no_results_text: noResultsText});
}
So I tried to remove the "visible" part but the result is even worst (size aren't good and sometime, no dropdown at all).
Why don't you convert the invisible dropdown as well?