Fix empty label - default value for selectbox has to be ''

This commit is contained in:
Nathan Gray 2012-06-06 14:21:38 +00:00
parent c0dcb66ebc
commit 4f4355f0f8

View File

@ -64,7 +64,7 @@ var et2_selectbox = et2_inputWidget.extend({
this._super.apply(this, arguments);
this.input = null;
this.value = [];
this.value = '';
// Allow no other widgets inside this one
this.supportedWidgetClasses = [];