You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Manuel Ohlendorf (JIRA)" <de...@myfaces.apache.org> on 2005/11/30 15:29:30 UTC

[jira] Created: (MYFACES-893) Popup is not working in Mozilla firefox 1.5

Popup is not working in Mozilla firefox 1.5
-------------------------------------------

         Key: MYFACES-893
         URL: http://issues.apache.org/jira/browse/MYFACES-893
     Project: MyFaces
        Type: Bug
  Components: Tomahawk  
    Versions: 1.1.1    
 Environment: Server:
Apache Tomcat/5.5.12
MyFaces combined with Tiles
Client:
Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8) Gecko/20051111 Firefox/1.5
    Reporter: Manuel Ohlendorf


A Popup added like this:
<t:popup styleClass="popup" closePopupOnExitingElement="true"
  closePopupOnExitingPopup="false" displayAtDistanceX="5"
  displayAtDistanceY="5">
  <h:outputText value="This is a very simple Tiles example." />

  <f:facet name="popup">
    <h:panelGroup>
      <h:panelGrid columns="1">
        <h:outputText value="This is a Popup test" />
      </h:panelGrid>
    </h:panelGroup>
  </f:facet>
</t:popup>

results in a javascript error in Firefox 1.5:
Error: content__id1Popup has no properties


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (MYFACES-893) Popup is not working in Mozilla firefox 1.5

Posted by "Bruno Aranda (JIRA)" <de...@myfaces.apache.org>.
     [ http://issues.apache.org/jira/browse/MYFACES-893?page=all ]
     
Bruno Aranda closed MYFACES-893:
--------------------------------

    Resolution: Invalid

> Popup is not working in Mozilla firefox 1.5
> -------------------------------------------
>
>          Key: MYFACES-893
>          URL: http://issues.apache.org/jira/browse/MYFACES-893
>      Project: MyFaces
>         Type: Bug
>   Components: Tomahawk
>     Versions: 1.1.1
>  Environment: Server:
> Apache Tomcat/5.5.12
> MyFaces combined with Tiles
> Client:
> Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8) Gecko/20051111 Firefox/1.5
>     Reporter: Manuel Ohlendorf
>     Assignee: Martin Marinschek

>
> A Popup added like this:
> <t:popup styleClass="popup" closePopupOnExitingElement="true"
>   closePopupOnExitingPopup="false" displayAtDistanceX="5"
>   displayAtDistanceY="5">
>   <h:outputText value="This is a very simple Tiles example." />
>   <f:facet name="popup">
>     <h:panelGroup>
>       <h:panelGrid columns="1">
>         <h:outputText value="This is a Popup test" />
>       </h:panelGrid>
>     </h:panelGroup>
>   </f:facet>
> </t:popup>
> results in a javascript error in Firefox 1.5:
> Error: content__id1Popup has no properties

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (MYFACES-893) Popup is not working in Mozilla firefox 1.5

Posted by "Martin Marinschek (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/MYFACES-893?page=comments#action_12359412 ] 

Martin Marinschek commented on MYFACES-893:
-------------------------------------------

I just tried out the tomahawk-examples on Firefox 1.5, and the popup renders just fine.

Sure this is not a different problem? Can you look into the javascript a little?

regards,

Martin

> Popup is not working in Mozilla firefox 1.5
> -------------------------------------------
>
>          Key: MYFACES-893
>          URL: http://issues.apache.org/jira/browse/MYFACES-893
>      Project: MyFaces
>         Type: Bug
>   Components: Tomahawk
>     Versions: 1.1.1
>  Environment: Server:
> Apache Tomcat/5.5.12
> MyFaces combined with Tiles
> Client:
> Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8) Gecko/20051111 Firefox/1.5
>     Reporter: Manuel Ohlendorf

>
> A Popup added like this:
> <t:popup styleClass="popup" closePopupOnExitingElement="true"
>   closePopupOnExitingPopup="false" displayAtDistanceX="5"
>   displayAtDistanceY="5">
>   <h:outputText value="This is a very simple Tiles example." />
>   <f:facet name="popup">
>     <h:panelGroup>
>       <h:panelGrid columns="1">
>         <h:outputText value="This is a Popup test" />
>       </h:panelGrid>
>     </h:panelGroup>
>   </f:facet>
> </t:popup>
> results in a javascript error in Firefox 1.5:
> Error: content__id1Popup has no properties

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (MYFACES-893) Popup is not working in Mozilla firefox 1.5

Posted by "Manuel Ohlendorf (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/MYFACES-893?page=comments#action_12359572 ] 

Manuel Ohlendorf commented on MYFACES-893:
------------------------------------------

Sorry, you are right. 
the filter was only mapped to:

<filter-mapping>
        <filter-name>extensionsFilter</filter-name>
        <url-pattern>*.jsf</url-pattern>
</filter-mapping>

and did not include:    

<filter-mapping>
        <filter-name>extensionsFilter</filter-name>
        <url-pattern>/faces/*</url-pattern>
</filter-mapping>
although we do not use this mapping...
Anyway, the popup works now!
Thanks for the help.

manu

> Popup is not working in Mozilla firefox 1.5
> -------------------------------------------
>
>          Key: MYFACES-893
>          URL: http://issues.apache.org/jira/browse/MYFACES-893
>      Project: MyFaces
>         Type: Bug
>   Components: Tomahawk
>     Versions: 1.1.1
>  Environment: Server:
> Apache Tomcat/5.5.12
> MyFaces combined with Tiles
> Client:
> Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8) Gecko/20051111 Firefox/1.5
>     Reporter: Manuel Ohlendorf
>     Assignee: Martin Marinschek

>
> A Popup added like this:
> <t:popup styleClass="popup" closePopupOnExitingElement="true"
>   closePopupOnExitingPopup="false" displayAtDistanceX="5"
>   displayAtDistanceY="5">
>   <h:outputText value="This is a very simple Tiles example." />
>   <f:facet name="popup">
>     <h:panelGroup>
>       <h:panelGrid columns="1">
>         <h:outputText value="This is a Popup test" />
>       </h:panelGrid>
>     </h:panelGroup>
>   </f:facet>
> </t:popup>
> results in a javascript error in Firefox 1.5:
> Error: content__id1Popup has no properties

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (MYFACES-893) Popup is not working in Mozilla firefox 1.5

Posted by "Manuel Ohlendorf (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/MYFACES-893?page=comments#action_12359568 ] 

Manuel Ohlendorf commented on MYFACES-893:
------------------------------------------

Maybe the error has something to do with tiles? Is this possible?

manu

> Popup is not working in Mozilla firefox 1.5
> -------------------------------------------
>
>          Key: MYFACES-893
>          URL: http://issues.apache.org/jira/browse/MYFACES-893
>      Project: MyFaces
>         Type: Bug
>   Components: Tomahawk
>     Versions: 1.1.1
>  Environment: Server:
> Apache Tomcat/5.5.12
> MyFaces combined with Tiles
> Client:
> Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8) Gecko/20051111 Firefox/1.5
>     Reporter: Manuel Ohlendorf
>     Assignee: Martin Marinschek

>
> A Popup added like this:
> <t:popup styleClass="popup" closePopupOnExitingElement="true"
>   closePopupOnExitingPopup="false" displayAtDistanceX="5"
>   displayAtDistanceY="5">
>   <h:outputText value="This is a very simple Tiles example." />
>   <f:facet name="popup">
>     <h:panelGroup>
>       <h:panelGrid columns="1">
>         <h:outputText value="This is a Popup test" />
>       </h:panelGrid>
>     </h:panelGroup>
>   </f:facet>
> </t:popup>
> results in a javascript error in Firefox 1.5:
> Error: content__id1Popup has no properties

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (MYFACES-893) Popup is not working in Mozilla firefox 1.5

Posted by "Martin Marinschek (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/MYFACES-893?page=comments#action_12359571 ] 

Martin Marinschek commented on MYFACES-893:
-------------------------------------------

Did you configure the extensions Filter correctly?

As shown in the MyFaces examples?

regards,

Martin

> Popup is not working in Mozilla firefox 1.5
> -------------------------------------------
>
>          Key: MYFACES-893
>          URL: http://issues.apache.org/jira/browse/MYFACES-893
>      Project: MyFaces
>         Type: Bug
>   Components: Tomahawk
>     Versions: 1.1.1
>  Environment: Server:
> Apache Tomcat/5.5.12
> MyFaces combined with Tiles
> Client:
> Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8) Gecko/20051111 Firefox/1.5
>     Reporter: Manuel Ohlendorf
>     Assignee: Martin Marinschek

>
> A Popup added like this:
> <t:popup styleClass="popup" closePopupOnExitingElement="true"
>   closePopupOnExitingPopup="false" displayAtDistanceX="5"
>   displayAtDistanceY="5">
>   <h:outputText value="This is a very simple Tiles example." />
>   <f:facet name="popup">
>     <h:panelGroup>
>       <h:panelGrid columns="1">
>         <h:outputText value="This is a Popup test" />
>       </h:panelGrid>
>     </h:panelGroup>
>   </f:facet>
> </t:popup>
> results in a javascript error in Firefox 1.5:
> Error: content__id1Popup has no properties

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (MYFACES-893) Popup is not working in Mozilla firefox 1.5

Posted by "Manuel Ohlendorf (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/MYFACES-893?page=comments#action_12359569 ] 

Manuel Ohlendorf commented on MYFACES-893:
------------------------------------------

Ok. I've found something:
when i enter the path to the popup javasript file:
faces/myFacesExtensionResource/popup.HtmlPopupRenderer/11302665/JSPopup.js
then the server can not find it. But why?

manu

> Popup is not working in Mozilla firefox 1.5
> -------------------------------------------
>
>          Key: MYFACES-893
>          URL: http://issues.apache.org/jira/browse/MYFACES-893
>      Project: MyFaces
>         Type: Bug
>   Components: Tomahawk
>     Versions: 1.1.1
>  Environment: Server:
> Apache Tomcat/5.5.12
> MyFaces combined with Tiles
> Client:
> Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8) Gecko/20051111 Firefox/1.5
>     Reporter: Manuel Ohlendorf
>     Assignee: Martin Marinschek

>
> A Popup added like this:
> <t:popup styleClass="popup" closePopupOnExitingElement="true"
>   closePopupOnExitingPopup="false" displayAtDistanceX="5"
>   displayAtDistanceY="5">
>   <h:outputText value="This is a very simple Tiles example." />
>   <f:facet name="popup">
>     <h:panelGroup>
>       <h:panelGrid columns="1">
>         <h:outputText value="This is a Popup test" />
>       </h:panelGrid>
>     </h:panelGroup>
>   </f:facet>
> </t:popup>
> results in a javascript error in Firefox 1.5:
> Error: content__id1Popup has no properties

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira