[
https://jira.jboss.org/jira/browse/JBIDE-3690?page=com.atlassian.jira.plu...
]
Yura Zhishko commented on JBIDE-3690:
-------------------------------------
I verified jsf commandLink and seam link, which were fixed according to this issue. With
seam link all is OK, but commandLink when it's disabled or not nested within JSF form
had incorrect behavior. I've fixed this situation (patch CommandLinkSpan is attached).
Yahor, please look it...
Incorrect styleClass is applying for the tags, which use <span>
wrapping
------------------------------------------------------------------------
Key: JBIDE-3690
URL:
https://jira.jboss.org/jira/browse/JBIDE-3690
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Visual Page Editor Templates
Affects Versions: 3.0.0.CR2
Reporter: Yura Zhishko
Assignee: Yahor Radtsevich
Fix For: 3.1.0
Attachments: CommandLinkSpan.patch, finalPatchForSeam10.patch, screenshot-1.jpg
1) Insert next source code into source path:
<%@ taglib
uri="http://richfaces.org/rich" prefix="rich"%>
<%@ taglib
uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib
uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib
uri="http://richfaces.org/a4j" prefix="a4j" %>
<html>
<head>
<style type="text/css">
span{
color: yellow;
background-color:green;
}
</style>
</head>
<body style="text-align: center">
<f:view>
<h:form id="form1">
<h:outputText value="Command Link"></h:outputText>
<f:verbatim>Exit</f:verbatim>
<a4j:commandLink action="None" value="Begining"/>
<a4j:htmlCommandLink value="Going
throw"></a4j:htmlCommandLink>
<h:message for="form1" />
<h:messages />
</h:form>
</f:view>
</body>
</html>
2) Compare Visual representation in VPE to Server side (see screenshot-1).
RESULT: This difference occurs due to wrapping with <span> tag of current tags. And
our VPE renders this style OK. But browser doesn't wrap this tag in <span>.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira