readonly attribute on ww:textfield does not behave as a boolean

o backport from WW 2.2.3
o problem also fixed in other templates

Issue Number: WW-1436

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@442936 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Hermanns
2006-09-13 10:49:45 +00:00
parent 7d394fb2ee
commit 3f075f787e
2 changed files with 3 additions and 3 deletions
@@ -1,6 +1,6 @@
<#--include "/${parameters.templateDir}/xhtml/head.ftl" /-->
<#include "/${parameters.templateDir}/${themeProperties.parent}/head.ftl" />
<script language="JavaScript" type="text/javascript"
src="<@s.url includeParams='none' value='/struts/ajax/dojoRequire.js' includeParams='none' encode='false' />"></script>
src="<@s.url value='/struts/ajax/dojoRequire.js' includeParams='none' encode='false' />"></script>
<script language="JavaScript" type="text/javascript"
src="<@s.url includeParams='none' value='/struts/CommonFunctions.js' includeParams='none' encode='false'/>"></script>
src="<@s.url value='/struts/CommonFunctions.js' includeParams='none' encode='false'/>"></script>
@@ -2,7 +2,7 @@
// Dojo configuration
djConfig = {
baseRelativePath: "<@s.url includeParams='none' value='/struts/dojo' includeParams="none" encode='false'/>",
isDebug: ${parameters.debug},
isDebug: ${parameters.debug?default(false)},
bindEncoding: "${parameters.encoding}",
debugAtAllCosts: true // not needed, but allows the Venkman debugger to work with the includes
};