Changeset 84
- Timestamp:
- 2014-09-10 19:58:59 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/1.2/J_Powermax.js ¶
r83 r84 181 181 } 182 182 183 // from UI5 for UI7 compatibility 184 function CommProv_pulldown(selectedDeviceID){ 185 var html=''; 186 var onChangeFunc=''; 187 var suffix=''; 188 189 if(selectedDeviceID!=0){ 190 var selDeviceObj=get_device_obj(selectedDeviceID); 191 var selectedComm=selDeviceObj.commUse; 192 var selectedIO=get_device_state(selectedDeviceID,HADEVICE_SID,HAD_IOPORT_DEVICE); 193 } 194 195 var roomsNo=jsonp.ud.rooms.length; 196 var devicesNo=jsonp.ud.devices.length; 197 if(roomsNo>0){ 198 html='<select id="CommProv_pulldown" class="styled" onChange="set_device_state('+selectedDeviceID+',\''+HADEVICE_SID+'\',\''+HAD_IOPORT_DEVICE+'\',this.value);">' 199 html+='<option value="" '+((selectedIO=="")?'selected':'')+'>-- '+"Please select"+' --</option>'; 200 html+='<OPTGROUP LABEL="'+"no room"+'">'; 201 for(var devicePos=0;devicePos<devicesNo;devicePos++){ 202 var deviceObj=jsonp.ud.devices[devicePos]; 203 if(parseInt(deviceObj.room)==0 && deviceObj.commProv==selectedComm){ 204 html+='<option value="'+jsonp.ud.devices[devicePos].id+'" '+((selectedIO==jsonp.ud.devices[devicePos].id)?'selected':'')+'>#'+jsonp.ud.devices[devicePos].id+' '+deviceObj.name+'</option>'; 205 } 206 } 207 html+='</OPTGROUP>'; 208 209 for(var i=0;i<roomsNo;i++){ 210 var roomObj=jsonp.ud.rooms[i]; 211 var roomName=roomObj.name; 212 213 html+='<OPTGROUP LABEL="'+roomName+'">'; 214 for(var devicePos=0;devicePos<devicesNo;devicePos++){ 215 var deviceObj=jsonp.ud.devices[devicePos]; 216 if(deviceObj.room==jsonp.ud.rooms[i].id && deviceObj.commProv==selectedComm){ 217 html+='<option value="'+jsonp.ud.devices[devicePos].id+'" '+((selectedIO==jsonp.ud.devices[devicePos].id)?'selected':'')+'>#'+jsonp.ud.devices[devicePos].id+' '+deviceObj.name+'</option>'; 218 } 219 } 220 html+='</OPTGROUP>'; 221 } 222 html+='</select>'; 223 }else{ 224 html=''; 225 } 226 227 return html; 228 } 229 183 230 function pmjsSettingsTab(deviceID) { 184 231 var deviceObj = get_device_obj(deviceID); … … 188 235 html += '<tr><td colspan="3"><div class="label"><b>General options</b></div></td></tr>'; 189 236 190 if (deviceObj.ip) { 237 var uarts = CommProv_pulldown(deviceID); 238 239 if (uarts == "" || deviceObj.ip) { 191 240 html += '<tr>'; 192 241 html += ' <td width="200">Communicate using IP</td>'; … … 196 245 html += '<tr>'; 197 246 html += ' <td width="200">Communicate using UART</td>'; 198 html += ' <td width="100">' + CommProv_pulldown(deviceID)+ '</td>';247 html += ' <td width="100">' + uarts + '</td>'; 199 248 html += '</tr>'; 200 249 }
Note: See TracChangeset
for help on using the changeset viewer.