Re: Struts 7.0 issue with Ftl

2025-05-28 Thread Lukasz Lenart
czw., 29 maj 2025 o 05:24 Priyanka Vaddadi napisał(a): > when I replace > <#if parameters.nameValue??> > value="<@s.property value="parameters.nameValue"/>"<#rt/> > with > > <#if attributes.name??> > value="<@s.property value="%{attributes.name}"/>"<#rt/> > Why do you replace "nameValue" with "

RE: Struts 7.0 issue with Ftl

2025-05-28 Thread Priyanka Vaddadi
Hi when I replace <#if parameters.nameValue??> value="<@s.property value="parameters.nameValue"/>"<#rt/> with <#if attributes.name??> value="<@s.property value="%{attributes.name}"/>"<#rt/> I am getting parameter name displayed in text box but not parameter value Please help me with this Th

Re: Struts 7.0 issue with Ftl

2025-05-28 Thread Dave Newton
On Wed, May 28, 2025 at 09:58 Priyanka Vaddadi wrote: The following has evaluated to null or missing: ==> attributes.disabled [in template "template/wam/text.ftl" at line 51, column 6] If the app has its own theme/templates/etc they may need updating. * https://struts.apache.org/getting-star

RE: Struts 7.0 issue with Ftl

2025-05-28 Thread Priyanka Vaddadi
Hi When I change below code <#if parameters.disabled?string?lower_case == "true"> disabled="disabled"<#rt/> with <#if attributes.disabled?string?lower_case == "true"> disabled="disabled"<#rt/> I am getting below error FreeMarker template error (HTML_DEBUG mode; use RETHROW in production!) T

Re: Struts 7.0 issue with Ftl

2025-05-28 Thread Lukasz Lenart
śr., 28 maj 2025 o 12:25 Priyanka Vaddadi napisał(a): > > Hi > > I am getting below error while loading the page after migrating to struts 7 > Pleaselet me know what could be the issue > > > Template inclusion failed (for parameter value > "/Empty{name='templateDir'}/simple/checkbox.ftl"): > Temp

Struts 7.0 issue with Ftl

2025-05-28 Thread Priyanka Vaddadi
Hi I am getting below error while loading the page after migrating to struts 7 Pleaselet me know what could be the issue Template inclusion failed (for parameter value "/Empty{name='templateDir'}/simple/checkbox.ftl"): Template not found for name "Empty{name='templateDir'}/simple/checkbox.ftl".