Changeset 84


Ignore:
Timestamp:
2014-09-10 19:58:59 (11 years ago)
Author:
nlrb
Message:

Fix CommProv_pulldown

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/1.2/J_Powermax.js

    r83 r84  
    181181} 
    182182 
     183// from UI5 for UI7 compatibility 
     184function 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 
    183230function pmjsSettingsTab(deviceID) { 
    184231   var deviceObj = get_device_obj(deviceID); 
     
    188235   html += '<tr><td colspan="3"><div class="label"><b>General options</b></div></td></tr>'; 
    189236    
    190    if (deviceObj.ip) { 
     237   var uarts = CommProv_pulldown(deviceID); 
     238    
     239   if (uarts == "" || deviceObj.ip) { 
    191240      html += '<tr>'; 
    192241      html += ' <td width="200">Communicate using IP</td>'; 
     
    196245      html += '<tr>'; 
    197246      html += ' <td width="200">Communicate using UART</td>'; 
    198       html += ' <td width="100">' + CommProv_pulldown(deviceID) + '</td>'; 
     247      html += ' <td width="100">' + uarts + '</td>'; 
    199248      html += '</tr>'; 
    200249   } 
Note: See TracChangeset for help on using the changeset viewer.