2013-12-10 3 views
1

select에서 optgroup을 사용하고 선택 항목이 updatepanel 내부에있을 때 IE 11이 설치되어 이상한 문제가 있습니다.updategroup의 optgroup은 IE 11에서 하이라이트를 유지합니다.

커서가 다른 필드에도 있지만 선택된 값은 계속 강조 표시됩니다.

<asp:UpdatePanel ID="updpnlContent" runat="server"> 
    <ContentTemplate> 
     <select> 
     <optgroup label="Alkaline Metals"> 
      <option>Lithium (Li)</option> 
      <option>Sodium (Na)</option> 
      <option>Potassium (K)</option> 
     </optgroup> 
     <optgroup label="Halogens"> 
      <option>Fluorine (F)</option> 
      <option>Chlorine (Cl)</option> 
      <option>Bromine (Br)</option> 
     </optgroup> 
     </select> 
    </ContentTemplate> 
</asp:UpdatePanel> 

나를 도울 수있는 답변을 보내 주셔서 감사합니다.

+0

안녕하세요? 표준 HTA 응용 프로그램에서 동일한 문제가 발생했습니다. optgroups를 포함하는 선택 드롭 다운은 항목이 초점을 잃을 때 강조 표시 옵션을 유지합니다! – DarrenNavitas

답변

0

나는이 같은 문제가 있었고 IE7 호환 모드에서 렌더링하도록 IE에 지시하는 HTML 헤더에 태그를 표시했기 때문에 발견되었습니다.

헤더이었다

<META content="IE=7.0000" http-equiv="X-UA-Compatible"> 

이것이 반전 문제를 해결 분리.