Fix missing empty label when no value in readonly selectbox

This commit is contained in:
Nathan Gray 2014-11-24 19:58:59 +00:00
parent d0331ca837
commit fd191888bb

View File

@ -965,6 +965,10 @@ var et2_selectbox_ro = et2_selectbox.extend([et2_IDetachedDOM],
}
}
}
else if (this.options.empty_label)
{
this.span.text(this.options.empty_label);
}
},
/**