You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Georg Füchsle (JIRA)" <de...@myfaces.apache.org> on 2007/10/30 11:32:50 UTC

[jira] Created: (TOMAHAWK-1138) inputSuggest is not displayed well in Firefox.

inputSuggest is not displayed well in Firefox.
----------------------------------------------

                 Key: TOMAHAWK-1138
                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1138
             Project: MyFaces Tomahawk
          Issue Type: Bug
    Affects Versions: 1.1.7-SNAPSHOT
         Environment: Facelets Sun-RI Tomahawk 1.1.7 Sandbox 1.1.7 JBoss 4.0.5 GA
            Reporter: Georg Füchsle



inputSuggest is not displayed well in Firefox.

I use Facelets (Sun-Ri) with tomahawk (SNAPSHOT 1.1.7) and for the inputSuggest-tag sandbox(SNAPSHOT 1.1.7).

I wrote the following tags:


	<t:inputText 	style="display:none;visibility:hidden;"
			value="#{mbKunde.anrede}"
			id="idkundeanredeziel" 
			forceId="true"/>  
	<x:inputSuggest id="idkundeanredequelle" 
			forceId="true">
		<f:selectItems value="#{datenbankListen.standardAnreden}"/>
	</x:inputSuggest>



	
datenbankListen.standardAnreden is of type Map<String, String>
Before sending the Request back to the server i make a Javascript method write the input of the inputSuggest into the inputText.
On Internet Explorer theis is working well, but on Firefox, the popdown-Area of the inputSuggest is not displayed. Therefore the suggestion-text is written permanent under the inputarea of inputSuggest.

Do I make something wrong or is the sandbox-Library not compatible with Facelets?

I tried the same with Facelets (MyFaces) without success.

Thanks!



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


[jira] Commented: (TOMAHAWK-1138) inputSuggest is not displayed well in Firefox.

Posted by "Georg Füchsle (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TOMAHAWK-1138?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547193 ] 

Georg Füchsle commented on TOMAHAWK-1138:
-----------------------------------------


maybe I used a wrong category...


I found a workaround, that will work.

To use inputSuggest in a Facelets architecture you can add the contentType="text/html" - attribute to the surrounding <f:view> ... </f:view>

like:

<f:view contentType="text/html" >
...
  <x:inputSuggest ....

  </x:inputSuggest>
...
</f:view>



> inputSuggest is not displayed well in Firefox.
> ----------------------------------------------
>
>                 Key: TOMAHAWK-1138
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1138
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>    Affects Versions: 1.1.7-SNAPSHOT
>         Environment: Facelets Sun-RI Tomahawk 1.1.7 Sandbox 1.1.7 JBoss 4.0.5 GA
>            Reporter: Georg Füchsle
>
> inputSuggest is not displayed well in Firefox.
> I use Facelets (Sun-Ri) with tomahawk (SNAPSHOT 1.1.7) and for the inputSuggest-tag sandbox(SNAPSHOT 1.1.7).
> I wrote the following tags:
> 	<t:inputText 	style="display:none;visibility:hidden;"
> 			value="#{mbKunde.anrede}"
> 			id="idkundeanredeziel" 
> 			forceId="true"/>  
> 	<x:inputSuggest id="idkundeanredequelle" 
> 			forceId="true">
> 		<f:selectItems value="#{datenbankListen.standardAnreden}"/>
> 	</x:inputSuggest>
> 	
> datenbankListen.standardAnreden is of type Map<String, String>
> Before sending the Request back to the server i make a Javascript method write the input of the inputSuggest into the inputText.
> On Internet Explorer theis is working well, but on Firefox, the popdown-Area of the inputSuggest is not displayed. Therefore the suggestion-text is written permanent under the inputarea of inputSuggest.
> Do I make something wrong or is the sandbox-Library not compatible with Facelets?
> I tried the same with Facelets (MyFaces) without success.
> Thanks!

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


[jira] Commented: (TOMAHAWK-1138) inputSuggest is not displayed well in Firefox.

Posted by "Matthias Weßendorf (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TOMAHAWK-1138?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12547121 ] 

Matthias Weßendorf commented on TOMAHAWK-1138:
----------------------------------------------

so how got this fixed?
or was it just an invalid Tomahawk-Bug ??

> inputSuggest is not displayed well in Firefox.
> ----------------------------------------------
>
>                 Key: TOMAHAWK-1138
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1138
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>    Affects Versions: 1.1.7-SNAPSHOT
>         Environment: Facelets Sun-RI Tomahawk 1.1.7 Sandbox 1.1.7 JBoss 4.0.5 GA
>            Reporter: Georg Füchsle
>
> inputSuggest is not displayed well in Firefox.
> I use Facelets (Sun-Ri) with tomahawk (SNAPSHOT 1.1.7) and for the inputSuggest-tag sandbox(SNAPSHOT 1.1.7).
> I wrote the following tags:
> 	<t:inputText 	style="display:none;visibility:hidden;"
> 			value="#{mbKunde.anrede}"
> 			id="idkundeanredeziel" 
> 			forceId="true"/>  
> 	<x:inputSuggest id="idkundeanredequelle" 
> 			forceId="true">
> 		<f:selectItems value="#{datenbankListen.standardAnreden}"/>
> 	</x:inputSuggest>
> 	
> datenbankListen.standardAnreden is of type Map<String, String>
> Before sending the Request back to the server i make a Javascript method write the input of the inputSuggest into the inputText.
> On Internet Explorer theis is working well, but on Firefox, the popdown-Area of the inputSuggest is not displayed. Therefore the suggestion-text is written permanent under the inputarea of inputSuggest.
> Do I make something wrong or is the sandbox-Library not compatible with Facelets?
> I tried the same with Facelets (MyFaces) without success.
> Thanks!

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


[jira] Resolved: (TOMAHAWK-1138) inputSuggest is not displayed well in Firefox.

Posted by "Georg Füchsle (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/TOMAHAWK-1138?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Georg Füchsle resolved TOMAHAWK-1138.
-------------------------------------

    Resolution: Fixed

> inputSuggest is not displayed well in Firefox.
> ----------------------------------------------
>
>                 Key: TOMAHAWK-1138
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1138
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>    Affects Versions: 1.1.7-SNAPSHOT
>         Environment: Facelets Sun-RI Tomahawk 1.1.7 Sandbox 1.1.7 JBoss 4.0.5 GA
>            Reporter: Georg Füchsle
>
> inputSuggest is not displayed well in Firefox.
> I use Facelets (Sun-Ri) with tomahawk (SNAPSHOT 1.1.7) and for the inputSuggest-tag sandbox(SNAPSHOT 1.1.7).
> I wrote the following tags:
> 	<t:inputText 	style="display:none;visibility:hidden;"
> 			value="#{mbKunde.anrede}"
> 			id="idkundeanredeziel" 
> 			forceId="true"/>  
> 	<x:inputSuggest id="idkundeanredequelle" 
> 			forceId="true">
> 		<f:selectItems value="#{datenbankListen.standardAnreden}"/>
> 	</x:inputSuggest>
> 	
> datenbankListen.standardAnreden is of type Map<String, String>
> Before sending the Request back to the server i make a Javascript method write the input of the inputSuggest into the inputText.
> On Internet Explorer theis is working well, but on Firefox, the popdown-Area of the inputSuggest is not displayed. Therefore the suggestion-text is written permanent under the inputarea of inputSuggest.
> Do I make something wrong or is the sandbox-Library not compatible with Facelets?
> I tried the same with Facelets (MyFaces) without success.
> Thanks!

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