You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Joris Wijlens (JIRA)" <de...@myfaces.apache.org> on 2007/02/19 17:25:05 UTC

[jira] Created: (TOMAHAWK-904) t:inputHtml does not work when a commandLink with window open has been clicked

t:inputHtml does not work when a commandLink with window open has been clicked
------------------------------------------------------------------------------

                 Key: TOMAHAWK-904
                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-904
             Project: MyFaces Tomahawk
          Issue Type: Bug
          Components: Html Editor
    Affects Versions: 1.1.3
         Environment: jvm 1.6
browser ie 6
operating system windows
application server jboss and tomcat
myfaces core 1.1.4
            Reporter: Joris Wijlens


The following page contains an commandlink and the html editor, when the link is clicked the html editor doesn't work anymore:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
	pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<f:view>
	<h:form>
		<t:commandLink value="test"
			onclick="window.open('www.google.com','document','resizable=yes,width=900,height=800,toolbar=no,directories=no,status=no,menubar=no,left=100,top=100');"
			target="document" />
			<br>
		<t:inputHtml style="height: 60ex;"></t:inputHtml>
	</h:form>
</f:view>
</body>
</html>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.