Hi, I'm using IE11, Version 11.0.9600.17420C0.
The problem I'm facing is with regard to Partial Page rendering. I'm using JSF 2.0 with Trinidad JSF tags for UI development and Java on the server side.
I've multiple dropdowns on a page. The requirement is to change/render the content of 2nd dropdown based on the selection made in 1st dropdown. The problem I face is that, I'm not able to make any selection on the 1st dropdown or any of the dropdowns for that matter , but I'm able to key in the values (type the first letter of the dropdown value and it appears in the selection space). The issue however is not replicable in IE 8 (the latest configuration) and I'm able to select the dropdown values.
The following HTML code is seen on that particular dropdown component on that page,
<select name="division" class="af_selectOneChoice_content" id="division" style="width: 300px;" onclick="if(!_pprChoiceAction(event))return true;TrPage._autoSubmit('formId','division',event,1);return true;" onblur="return _chain('enableCreateActivitybutton()','if(!_pprChoiceAction(event))return true;TrPage._autoSubmit(\'formId\',\'division\',event,1);return true;',this,event,true)" onchange="return _pprChoiceChangeEvent(event);">
Here, if I remove the "!" check in if condition of onclick event, then I'm able to make selections in dropdowns in IE11 but other complexities arise in IE8. Things like not able to select on the first attempt, the whole page getting refreshed etc are encountered on IE8 with this hack.
Is there any hack or work around or any patching that I could include to make it work WRT the browser because the code is same, the HTML generated is the same.