我正在开发一个Spring Web Flow Project,我想使用Dojo dijit css来使我的输入表单和字段变得更好。我想让我的田地发光。
我的JSP上有以下内容:
<script type="text/javascript" src="<c:url value="/resources/dojo/dojo.js" />"> </script>
<script type="text/javascript" src="<c:url value="/resources/spring/Spring.js" />"> </script>
<script type="text/javascript" src="<c:url value="/resources/spring/Spring-Dojo.js" />"> </script>
<link type="text/css" rel="stylesheet" href="<c:url value="/resources/dijit/themes/claro/claro.css" />" />
但是如何更改我的Spring表单:输入标签以使用它们并发光?
有人可以告诉我如何更改以下内容
<form:input tabIndex="3" maxLength="15" size="16" path="first_name" />
所以它会发光...... thansk
答案 0 :(得分:0)
我不确定你的意思是“发光”但是要使用dojo css你需要添加这样的东西:
<script type="text/javascript">
Spring.addDecoration(new Spring.ElementDecoration({
elementId : "first_name",
widgetType : "dijit.form.ValidationTextBox",
widgetAttrs : { required : true }}));
</script>
答案 1 :(得分:0)
我错过了
<body class="claro">