You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Bruno Marti (JIRA)" <de...@myfaces.apache.org> on 2006/07/27 15:01:13 UTC

[jira] Created: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

inputSuggestAjax not correctly rendered in IE
---------------------------------------------

                 Key: TOMAHAWK-571
                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
             Project: MyFaces Tomahawk
          Issue Type: Bug
          Components: InputSuggestAjax
    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
         Environment: Windows XP SP2, Tomcat 5.5.16, 
IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
            Reporter: Bruno Marti


IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
Userinputs aren't possible.
Firefox: works fine

code:
<h:panelGrid columns="2" id="myfaces_ajaxPanel">
	<h:outputText value="Enter a value: " />
	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
		value="#{mySelectedCountryRecord.selectedCountry}" />
</h:panelGrid>

Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war

Is there a render problem or have I misconfigured something?

-- 
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: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

Posted by "Bruno Marti (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/TOMAHAWK-571?page=comments#action_12427221 ] 
            
Bruno Marti commented on TOMAHAWK-571:
--------------------------------------

That's it.
I've defined the input_suggest.css in the header.jsp with your definition above.
Works fine now.
Thanks for helping

> inputSuggestAjax not correctly rendered in IE
> ---------------------------------------------
>
>                 Key: TOMAHAWK-571
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: InputSuggestAjax
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: Windows XP SP2, Tomcat 5.5.16, 
> IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
> JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
>            Reporter: Bruno Marti
>         Attachments: inputsuggestajaxFirefox.jpg, inputsuggestajaxIE.jpg, myfaces_ajax.zip
>
>
> IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
> Userinputs aren't possible.
> Firefox: works fine
> code:
> <h:panelGrid columns="2" id="myfaces_ajaxPanel">
> 	<h:outputText value="Enter a value: " />
> 	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
> 		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
> 		value="#{mySelectedCountryRecord.selectedCountry}" />
> </h:panelGrid>
> Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war
> Is there a render problem or have I misconfigured something?

-- 
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: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

Posted by "Gerald Müllan (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/TOMAHAWK-571?page=comments#action_12427213 ] 
            
Gerald Müllan commented on TOMAHAWK-571:
----------------------------------------

You should not need the styleClass attribute, all needed styling stuff is already in your input_suggest.css file.

In case of this Dojo widget, its only possible to style the component through these predefined styles.
A styleClass doesn`t make any sense because under the hood, the widget consists of many DOM-nodes, and not of one input field.
Length can also be defined there:

table.dojoComboBox {
        border: 1px solid #afafaf;
width:200px;
}

or take the style attribute.

Why not defining the input_suggest.css file like other resources in the header, and leaving out the styleLocation?
Have not considered this attribute, maybe Dojo has some problems with alternate location.



> inputSuggestAjax not correctly rendered in IE
> ---------------------------------------------
>
>                 Key: TOMAHAWK-571
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: InputSuggestAjax
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: Windows XP SP2, Tomcat 5.5.16, 
> IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
> JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
>            Reporter: Bruno Marti
>         Attachments: inputsuggestajaxFirefox.jpg, inputsuggestajaxIE.jpg, myfaces_ajax.zip
>
>
> IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
> Userinputs aren't possible.
> Firefox: works fine
> code:
> <h:panelGrid columns="2" id="myfaces_ajaxPanel">
> 	<h:outputText value="Enter a value: " />
> 	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
> 		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
> 		value="#{mySelectedCountryRecord.selectedCountry}" />
> </h:panelGrid>
> Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war
> Is there a render problem or have I misconfigured something?

-- 
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: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

Posted by "Gerald Müllan (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/TOMAHAWK-571?page=comments#action_12424507 ] 
            
Gerald Müllan commented on TOMAHAWK-571:
----------------------------------------

As a workaround, you can try it out to set the "width" attribute over css with a given px value. That should also be possible.

> inputSuggestAjax not correctly rendered in IE
> ---------------------------------------------
>
>                 Key: TOMAHAWK-571
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: InputSuggestAjax
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: Windows XP SP2, Tomcat 5.5.16, 
> IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
> JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
>            Reporter: Bruno Marti
>         Attachments: inputsuggestajaxFirefox.jpg, inputsuggestajaxIE.jpg
>
>
> IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
> Userinputs aren't possible.
> Firefox: works fine
> code:
> <h:panelGrid columns="2" id="myfaces_ajaxPanel">
> 	<h:outputText value="Enter a value: " />
> 	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
> 		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
> 		value="#{mySelectedCountryRecord.selectedCountry}" />
> </h:panelGrid>
> Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war
> Is there a render problem or have I misconfigured something?

-- 
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: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

Posted by "Gerald Müllan (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/TOMAHAWK-571?page=comments#action_12427129 ] 
            
Gerald Müllan commented on TOMAHAWK-571:
----------------------------------------

The Jars are the latest ones, and the changes are inside. It should work with the style or styleClass attribute, and setting the width.

You can also affect the style through hacking around in the css properties which are shown on the referenced wiki site.

If it still goes wrong, show me your Jsp.

> inputSuggestAjax not correctly rendered in IE
> ---------------------------------------------
>
>                 Key: TOMAHAWK-571
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: InputSuggestAjax
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: Windows XP SP2, Tomcat 5.5.16, 
> IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
> JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
>            Reporter: Bruno Marti
>         Attachments: inputsuggestajaxFirefox.jpg, inputsuggestajaxIE.jpg
>
>
> IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
> Userinputs aren't possible.
> Firefox: works fine
> code:
> <h:panelGrid columns="2" id="myfaces_ajaxPanel">
> 	<h:outputText value="Enter a value: " />
> 	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
> 		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
> 		value="#{mySelectedCountryRecord.selectedCountry}" />
> </h:panelGrid>
> Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war
> Is there a render problem or have I misconfigured something?

-- 
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: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

Posted by "Bruno Marti (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/TOMAHAWK-571?page=comments#action_12427207 ] 
            
Bruno Marti commented on TOMAHAWK-571:
--------------------------------------

Yes.
The attribute 'style' is now working for IE and Firefox. thx
But the attribute 'styleClass' or 'styleLocation' isn't working anymore.

(I've added my little web app as attachement)

> inputSuggestAjax not correctly rendered in IE
> ---------------------------------------------
>
>                 Key: TOMAHAWK-571
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: InputSuggestAjax
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: Windows XP SP2, Tomcat 5.5.16, 
> IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
> JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
>            Reporter: Bruno Marti
>         Attachments: inputsuggestajaxFirefox.jpg, inputsuggestajaxIE.jpg, myfaces_ajax.zip
>
>
> IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
> Userinputs aren't possible.
> Firefox: works fine
> code:
> <h:panelGrid columns="2" id="myfaces_ajaxPanel">
> 	<h:outputText value="Enter a value: " />
> 	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
> 		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
> 		value="#{mySelectedCountryRecord.selectedCountry}" />
> </h:panelGrid>
> Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war
> Is there a render problem or have I misconfigured something?

-- 
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] Resolved: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

Posted by "Martin Marinschek (JIRA)" <de...@myfaces.apache.org>.
     [ http://issues.apache.org/jira/browse/TOMAHAWK-571?page=all ]

Martin Marinschek resolved TOMAHAWK-571.
----------------------------------------

    Fix Version/s: 1.1.4-SNAPSHOT
       Resolution: Fixed
         Assignee: Gerald Müllan

> inputSuggestAjax not correctly rendered in IE
> ---------------------------------------------
>
>                 Key: TOMAHAWK-571
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: InputSuggestAjax
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: Windows XP SP2, Tomcat 5.5.16, 
> IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
> JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
>            Reporter: Bruno Marti
>         Assigned To: Gerald Müllan
>             Fix For: 1.1.4-SNAPSHOT
>
>         Attachments: inputsuggestajaxFirefox.jpg, inputsuggestajaxIE.jpg, myfaces_ajax.zip
>
>
> IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
> Userinputs aren't possible.
> Firefox: works fine
> code:
> <h:panelGrid columns="2" id="myfaces_ajaxPanel">
> 	<h:outputText value="Enter a value: " />
> 	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
> 		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
> 		value="#{mySelectedCountryRecord.selectedCountry}" />
> </h:panelGrid>
> Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war
> Is there a render problem or have I misconfigured something?

-- 
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: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

Posted by "Gerald Müllan (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/TOMAHAWK-571?page=comments#action_12426280 ] 
            
Gerald Müllan commented on TOMAHAWK-571:
----------------------------------------

Have a look at current svn head, i have changed the styling stuff of the component, with this approach it should work now.
Just specify the "style" attribute and give it a width value. 

I also have had a look at how we can influence the default Dojo styling stuff and have updated the wiki on this:

http://wiki.apache.org/myfaces/InputSuggestAjax

Can you test it if it works for you?





> inputSuggestAjax not correctly rendered in IE
> ---------------------------------------------
>
>                 Key: TOMAHAWK-571
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: InputSuggestAjax
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: Windows XP SP2, Tomcat 5.5.16, 
> IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
> JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
>            Reporter: Bruno Marti
>         Attachments: inputsuggestajaxFirefox.jpg, inputsuggestajaxIE.jpg
>
>
> IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
> Userinputs aren't possible.
> Firefox: works fine
> code:
> <h:panelGrid columns="2" id="myfaces_ajaxPanel">
> 	<h:outputText value="Enter a value: " />
> 	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
> 		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
> 		value="#{mySelectedCountryRecord.selectedCountry}" />
> </h:panelGrid>
> Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war
> Is there a render problem or have I misconfigured something?

-- 
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: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

Posted by "Bruno Marti (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/TOMAHAWK-571?page=comments#action_12427123 ] 
            
Bruno Marti commented on TOMAHAWK-571:
--------------------------------------

I've updated the following JARs from http://people.apache.org/builds/myfaces/nightly/ (actual date: 10-Aug-2006):
- myfaces-core-1.1.5-SNAPSHOT-bin.zip
- tomahawk-1.1.5-SNAPSHOT-bin.zip
- tomahawk-sandbox-1.1.5-SNAPSHOT-bin.zip

Unfortunately neither the 'styleLocation' nor the 'width' attribute is working, because they aren't represented in the html-src.
<script type="text/javascript"><!--
dojo.require('extensions.FacesIO');
//--></script><script type="text/javascript"><!--
dojo.require('dojo.widget.ComboBox');
//--></script><script type="text/javascript"><!--
dojo.require('extensions.ComboBox');
//--></script><script type="text/javascript"><!--
dojo.require('dojo.widget.Wizard');
//--></script><script type="text/javascript"><!--
dojo.require('dojo.event.*');
//--></script>
<input id="myfaces_ajaxForm:inputSuggest1" name="myfaces_ajaxForm:inputSuggest1" dojoType="combobox" dataUrl="/myfaces_ajax/country.jsf;jsessionid=723CAD17D9650C8C13F06983FD2466D5?affectedAjaxComponent=myfaces_ajaxForm:inputSuggest1&amp;charset=&amp;myfaces_ajaxForm:inputSuggest1=%{searchString}" mode="remote" /><script type="text/javascript"><!--
dojo.event.connect(window, "onload", function(evt) {
var comboWidget = dojo.widget.byId("myfaces_ajaxForm:inputSuggest1");
comboWidget.textInputNode.value = "";
comboWidget.comboBoxValue.value = "";
});
//--></script>


Did I downloaded from the wrong SVN?
If you prefer, I would like to send you my little test web app?


> inputSuggestAjax not correctly rendered in IE
> ---------------------------------------------
>
>                 Key: TOMAHAWK-571
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: InputSuggestAjax
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: Windows XP SP2, Tomcat 5.5.16, 
> IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
> JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
>            Reporter: Bruno Marti
>         Attachments: inputsuggestajaxFirefox.jpg, inputsuggestajaxIE.jpg
>
>
> IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
> Userinputs aren't possible.
> Firefox: works fine
> code:
> <h:panelGrid columns="2" id="myfaces_ajaxPanel">
> 	<h:outputText value="Enter a value: " />
> 	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
> 		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
> 		value="#{mySelectedCountryRecord.selectedCountry}" />
> </h:panelGrid>
> Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war
> Is there a render problem or have I misconfigured something?

-- 
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: (TOMAHAWK-571) inputSuggestAjax not correctly rendered in IE

Posted by "Bruno Marti (JIRA)" <de...@myfaces.apache.org>.
    [ http://issues.apache.org/jira/browse/TOMAHAWK-571?page=comments#action_12426140 ] 
            
Bruno Marti commented on TOMAHAWK-571:
--------------------------------------

sorry for being late -> holidays

I've tried both ways to set a width for the input field:
style="width:50px;color:red;"
or
styleClass="myStyle" // with the same style def. insight a css

but neither nor is working.
If I look at the html source the above pass-through attributes are not set.
However the size attribute is passed through but doesn't affect the size.



> inputSuggestAjax not correctly rendered in IE
> ---------------------------------------------
>
>                 Key: TOMAHAWK-571
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-571
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: InputSuggestAjax
>    Affects Versions: 1.1.4-SNAPSHOT, 1.1.5-SNAPSHOT
>         Environment: Windows XP SP2, Tomcat 5.5.16, 
> IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, Firefox 1.5.0.4
> JARs: myfaces-api-1.1.5-SNAPSHOT.jar, myfaces-impl-1.1.5-SNAPSHOT.jar, tomahawk-1.1.5-SNAPSHOT.jar, tomahawk-sandbox-1.1.5-SNAPSHOT.jar
>            Reporter: Bruno Marti
>         Attachments: inputsuggestajaxFirefox.jpg, inputsuggestajaxIE.jpg
>
>
> IE: The inputSuggestAjax Element is always displayed in a size of 0, even if the size="100" attribute is set.
> Userinputs aren't possible.
> Firefox: works fine
> code:
> <h:panelGrid columns="2" id="myfaces_ajaxPanel">
> 	<h:outputText value="Enter a value: " />
> 	<s:inputSuggestAjax suggestedItemsMethod="#{myCountryBean.getCountries}" 
> 		required="true" maxSuggestedItems="10"	id="inputSuggest1" size="100"
> 		value="#{mySelectedCountryRecord.selectedCountry}" />
> </h:panelGrid>
> Tested with nightly build of 1.1.5 from 27. July 2006 or also existing in tomahawk-sandbox-examples-1.1.4-SNAPSHOT.war
> Is there a render problem or have I misconfigured something?

-- 
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