基于 dataType 渲染 UI 元素的最佳方法

发布于 2024-12-20 12:57:14 字数 1374 浏览 2 评论 0原文

我正在尝试根据 dataType 值动态渲染 richfaces 和 jsf UI 元素。

例如:我有一个如下的枚举

public enum DataType {
    DT_LONGLONG(1), DT_STRING(2), DT_LONG(3), DT_DATE(4), DS_EXTERNALREFERENCE(5), 
    DT_BOOLEAN(6), DT_FLOAT(7), DT_SHORT(8);
}

然后在 xhtml 页面中迭代自定义对象列表时,我检查 dataType 并相应地呈现 UI 元素,如下所示:

<c:if test="#{meaCompPartAttr.dataType.dataType == 2}">
    <h:inputText />
</c:if>
<c:if test="#{(meaCompPartAttr.dataType.dataType == 1) or
        (meaCompPartAttr.dataType.dataType == 3) or
        (meaCompPartAttr.dataType.dataType == 8)}">
    <h:inputText onkeyup="javascript:validateField(this,             '#{tpMsgs.longRegularExpression}');">
    <f:validateLongRange/>
    </h:inputText>
</c:if>
<c:if test="#{meaCompPartAttr.dataType.dataType == 7}">
<h:inputText onkeyup="javascript:validateField(this, '#{tpMsgs.doubleRegularExpression}');">
    <f:validateDoubleRange/>
    </h:inputText>
</c:if>
<c:if test="#{meaCompPartAttr.dataType.dataType == 6}">
    <h:selectBooleanCheckbox />
</c:if>
<c:if test="#{meaCompPartAttr.dataType.dataType == 4}">
    <rich:calendar />
</c:if>

因此,我通常会遇到类转换异常,例如 String 到 Boolean 或长到字符串等。我认为发生这种情况是因为 jstl 和 jsf 代码不同步运行。

是否有其他方法可以按照上述示例中的建议动态渲染 UI 元素?

I am trying to render richfaces and jsf UI elements dynamically based on the dataType value.

Ex : I have a enum as below

public enum DataType {
    DT_LONGLONG(1), DT_STRING(2), DT_LONG(3), DT_DATE(4), DS_EXTERNALREFERENCE(5), 
    DT_BOOLEAN(6), DT_FLOAT(7), DT_SHORT(8);
}

Then in xhtml page while iterating through the list of my custom objects, I check for the dataType and render the UI elements accordingly as below :

<c:if test="#{meaCompPartAttr.dataType.dataType == 2}">
    <h:inputText />
</c:if>
<c:if test="#{(meaCompPartAttr.dataType.dataType == 1) or
        (meaCompPartAttr.dataType.dataType == 3) or
        (meaCompPartAttr.dataType.dataType == 8)}">
    <h:inputText onkeyup="javascript:validateField(this,             '#{tpMsgs.longRegularExpression}');">
    <f:validateLongRange/>
    </h:inputText>
</c:if>
<c:if test="#{meaCompPartAttr.dataType.dataType == 7}">
<h:inputText onkeyup="javascript:validateField(this, '#{tpMsgs.doubleRegularExpression}');">
    <f:validateDoubleRange/>
    </h:inputText>
</c:if>
<c:if test="#{meaCompPartAttr.dataType.dataType == 6}">
    <h:selectBooleanCheckbox />
</c:if>
<c:if test="#{meaCompPartAttr.dataType.dataType == 4}">
    <rich:calendar />
</c:if>

Because of this I usually get class cast exceptions like String to Boolean or Long to String etc. I assume this is happening coz jstl and jsf code do not run in sync.

Is there any other approach to render UI elements dynamically as proposed in the above sample?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒与心事 2024-12-27 12:57:14

因此,您使用 或任何其他 JSF 迭代组件而不是 JSTL ?使用 代替,或者使用 rendered 属性代替

另请参阅:

So you're iterating using <ui:repeat> or <h:dataTable> or any other JSF iterating component instead of the JSTL <c:forEach>? Either use <c:forEach> instead, or use the rendered attribute instead of <c:if>.

See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文