paulbates Posted December 15, 2014 Posted December 15, 2014 Hi Benoit I am working on my Cust Dev tab and had a question. I want to change the Cust Dev tab into a status for my house by just displaying selected variables in locations I create in the device list. I can get the following to display: var deviceList = // This is an example of a table with customizations [ { location: "HVAC Upstairs", list : [ { name : "Stage 2 Heat Cycles", labelOn:" ", labelOff:" ", typeControl:"Var", refreshOpt:"Var", varType:"2", varId:"63", varInc:"0", varMax:"0", varControl:"0", varSliderSnap:"0" } ]} ]; My question is, can i tweak the parameters to display just the variable name and value; no slider or buttons? Formatted similar to the variables tab, but no + -. Attached is an example of what it would look like. I tried adding varControl:"0" but it didn't work for me. Maybe I remove all of the other control related settings like varMax, etc? Thank you Paul
bmercier Posted December 15, 2014 Posted December 15, 2014 Hello Paul, All you need to do is add hideControls:"Yes", which does remove all controls (buttons & sliders). Your device line can be simplified to the following: { name : "Stage 2 Heat Cycles", refreshOpt:"Var", varType:"2", varId:"63", hideControls:"Yes" } Benoit.
paulbates Posted December 16, 2014 Author Posted December 16, 2014 Thank you Benoit, that's what I needed to know. I really appreciate your work on this package. Paul
Recommended Posts
Archived
This topic is now archived and is closed to further replies.