Fixes: Not able to use textMultiLine as macro parameter in wizard

Work Items: 29883
This commit is contained in:
starfighter83
2011-08-24 07:24:13 -02:00
parent 96a8b190a4
commit 656095caee

View File

@@ -38,7 +38,7 @@
var control = jQuery("#" + controlId);
if (control == null || (!control.is('input') && !control.is('select'))) {
if (control == null || (!control.is('input') && !control.is('select') && !control.is('textarea'))) {
// hack for tree based macro parameter types
var picker = Umbraco.Controls.TreePicker.GetPickerById(controlId);
if (picker != undefined) {