0

我的客户有一个特殊要求,他们希望我在 Oracle UCM 的内容配置文件页面中添加复选框。我知道只有 6 种类型的字段,但复选框不是其中之一。甚至可以在内容配置文件页面中添加复选框信息/元字段吗?

4

2 回答 2

0

您应该能够为该字段使用以下自定义动态html 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@>
于 2016-08-06T16:16:39.133 回答
0

通常,Content Server UI 中不使用复选框。如果是,则通常以复选框仅执行 JavaScript 以填充隐藏的元元素的方式完成。

于 2016-06-24T16:54:58.040 回答