2016-01-06 34 views
0

我有一個s:optiontrsanferselect用於selectedGrps和unselectedGrps。 當從左到右選擇幾個組時,SelectedGroups列表將變爲null,並且在IE11中提交表單時,但在Chrome和Mozilla中表單會很好。任何建議將不勝感激。當使用<s:optiontransferselect>時,IE11不顯示選定的列表

下面是代碼:

<s:optiontransferselect 
    leftTitle="% 
    {getText('authoring.label.Grps.selectOptions.left.title')}" 
    rightTitle="%  
    {getText('authoring.label.Grps.selectOptions.right.title')}" 
    label="% {getText('authoring.label.Grps')}" tooltip="%    
    {getText('authoring.label.Grps.info')}" id="unSelectedGrps" 
    doubleId="selectedGrps name="groupVO.unSelectedGroupIds"   
    doubleName="groupVO.selectedGroupIds" list="groupVO.availableGrps" 
    doubleList="groupVO.selectedGrps" listKey="name" 
    listValue="value" listTitle="description" 
    doubleListKey="name" doubleListValue="value" 
    doubleListTitle="description" multiple="true" 
    allowSelectAll="false" allowUpDownOnLeft="false" 
    allowUpDownOnRight="false" buttonCssClass="buttonArrow 
    btn btn-primary" cssClass="form-control" 
    doubleCssClass="form-control" 
    /> 
+0

什麼是JS控制檯說? –

+0

StrutsUtils未定義即將到來 –

+0

您需要提供更多詳細信息,例如您正在使用的特定Struts 2版本,您正在部署的確切庫,JSP詳細信息(什麼標記庫,是否有S2 JS加載等)。 –

回答

0

在我們使用$('#selectedGroups option')").attr("selected", "selected"),並且由於所選組頁面加載作爲選擇不來,但是當我用$('#selectedGroups option').prop('selected', true) 那麼它的未來精細,所以我相信attr("selected", "selected")供選擇不適用於IE

相關問題