I am trying to use a simple stripes link tag in IE 7.  This tag works
perfectly in Firefox 3.x, but does not work in IE 7.

<s:link beanclass="cme.artemis.stripes.dashboard.ManageDashboardsActionBean"
        event="makeActive">
    <s:param name="dashboardId" value="${dashboard.id}"/>
     <input type="radio" id="isDefault${stat.index}" name="isDefault" 
                value="${dashboard.defaultDashboard}" 
                ${(dashboard.defaultDashboard) ? ' checked="checked"' : ''}/> 
</s:link>

If I change it to a normal link tag as follows, however, it works in both.

< a
href="/techinfo/dashboard/ManageDashboards.action?makeActive=&dashboardId=${dashboard.id}">
    <input type="radio" id="isDefault${stat.index}" name="isDefault" 
                value="${dashboard.defaultDashboard}" 
                ${(dashboard.defaultDashboard) ? ' checked="checked"' : ''}/> 
< / a>

Why can't IE 7 translate the tag?  Is there an error in my tag that Firefox
ignores that IE doesn't?


--Note the spaces were added to the anchor tag so it would render as markup
instead of a hyperlink.


-- 
View this message in context: 
http://www.nabble.com/Stripes-Link-Tag-in-internet-explorer-7-doesn%27t-work-tp23407609p23407609.html
Sent from the stripes-users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to