Adds default value support to CheckBoxList data editor setting type

This commit is contained in:
starfighter83
2011-07-26 08:18:27 -02:00
parent 57edbcae25
commit 738380e32a

View File

@@ -51,6 +51,8 @@ namespace umbraco.editorControls.SettingControls
}
if (string.IsNullOrEmpty(_val) && !string.IsNullOrEmpty(DefaultValue))
cbl.SelectedValue = DefaultValue;
return cbl;