我的客户有特殊要求,他们希望我在Oracle UCM的内容配置文件页面中添加复选框。我知道那里只有6种类型的字段,但复选框不是其中之一。是否甚至可以在内容配置文件页面中添加复选框信息/元字段?
答案 0 :(得分:0)
通常,Content Server UI中不使用复选框。如果是,则通常以复选框执行JavaScript以填充隐藏元元素的方式完成。
答案 1 :(得分:0)
您应该能够为该字段使用以下自定义dynamichtml include std_checkbox_field 。
这是 std_checkbox_field 的Oracle代码:
<@dynamichtml std_checkbox_field@>
<$if checkboxFieldName$><$tempFieldName = fieldName, fieldName = checkboxFieldName$><$endif$>
<$if checkboxFieldCaption$><$fieldCaption = checkboxFieldCaption$><$endif$>
<$exec inc("compute_std_field_overrides")$>
<$if not isFieldExcluded$>
<$exec inc("compute_std_checkbox_includes")$>
<$inc(fieldInclude)$>
<$endif$>
<$if checkboxFieldName$><$fieldName = tempFieldName$><$endif$>
<$exec inc("std_field_cleanup")$>
<@end@>