[ https://issues.apache.org/jira/browse/WICKET-444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12501939 ]
Peter Thomas commented on WICKET-444: ------------------------------------- Al - I really liked the fact that previously you could switch between <input type-="submit"/> and <input type="image"/> in the markup without *any* changes to the Java code. It used to work fine earlier - and I'm just wondering if it is too much to ask to have Wicket work this way. I can certainly explore the ImageButton component, but so far I've been very productive using resources relative to context-path root, and am also guessing that the alternative would be a little more intimidating for someone new to wicket. Do let me know! > src attribute path not processed by wicket for INPUT type=image and any IMG > with wicket:message in it > ----------------------------------------------------------------------------------------------------- > > Key: WICKET-444 > URL: https://issues.apache.org/jira/browse/WICKET-444 > Project: Wicket > Issue Type: Bug > Components: wicket > Affects Versions: trunk > Reporter: Peter Thomas > Assignee: Alastair Maw > Fix For: 1.3.0-beta2 > > > I'm using wicket-1.3.0-incubating-SNAPSHOT.jar Sun, 01 Apr 2007 19:21:01 GMT > Wicket appears to pre-process and modify the value of the SRC attribute in > most cases (e.g. IMG tags) so that at run time, the path is absolute path. > This works fine for IMG tags. So with wicket filter mapped to /app/* and > static files in /resources : > The following HTML: <img src="resources/system-search.png"/> > becomes at runtime: <img src="/jtrac/resources/system-search.png"> > Problem: > Ever since 1.3 I noticed that fixing of the SRC attribute was not happening > for <input type=image"/> tags. I worked around this by prepending "../" - > but obviously this is not a good idea. For example this is what I am using > which works: > <input type="image" wicket:id="deallocate" src="../resources/remove.png"/> > What prompted me to raise this JIRA now is that I just switched to the latest > SNAPSHOT and I find that any IMG tag that has a "wicket:message" attribute > also does not get the SRC value "fixed". This used to work in 1.2.X > I have a feeling this is related to the changes made as per > https://issues.apache.org/jira/browse/WICKET-440 > So to summarize, wicket does not change SRC values to absolute paths for the > following tags: > a) any tag with a wicket:message attribute present > b) any <input type="image"/> tag -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.