From aa07a39a2e36f96aa9cfd1ec96793e98c13b71db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20St=C3=B6ckel?= Date: Sun, 21 Aug 2011 08:59:12 +0000 Subject: [PATCH] Don't allow children for the menupopup --- etemplate/js/et2_selectbox.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/etemplate/js/et2_selectbox.js b/etemplate/js/et2_selectbox.js index 4e12be766f..60615c68bb 100644 --- a/etemplate/js/et2_selectbox.js +++ b/etemplate/js/et2_selectbox.js @@ -49,6 +49,9 @@ var et2_selectbox = et2_inputWidget.extend({ init: function(_parent) { this._super.apply(this, arguments); + // This widget allows no other widgets inside of it + this.supportedWidgetClasses = []; + this.createInputWidget(); },