infoOptions如何動態MultiSelect設定?
if (需要設成多選方式) {

$('#dataFormMasterShipAddress').attr('infolight-options', $('#dataFormMasterShipAddress').attr('infolight-options').replace('multiSelect:false', 'multiSelect:true'));

}

else {

$('#dataFormMasterShipAddress').attr('infolight-options', $('#dataFormMasterShipAddress').attr('infolight-options').replace('multiSelect:true', 'multiSelect:false'));

}

$('#dataFormMasterShipAddress').options('initializePanel');

dataFormMasterShipAddress
是元件id,請注意修改。