Widgets on SpaceLynk - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9) +--- Thread: Widgets on SpaceLynk (/showthread.php?tid=1742) |
Widgets on SpaceLynk - suporte.arqtech - 22.11.2018 Hello, guys. I want to know if there´s a limit for the number of widgets in a project. I have a project wich integrates more than 1000 Dali ballasts and the client need to have the possibilitie of individual control of them. My idea consists in selecting the ballast by a click and than show it´s controls and info in a determinated area of the workspace. Widgets seems to be the perfect solution for this case. So, will SpaceLynk support a high number of widgets? BR, Jefferson Campos Widgets on SpaceLynk - Kai-Roger - 22.11.2018 Then it altso would be nice to have the possibility to sort all your 1000 widgets alfabetically og something like that. Is this possible now? RE: Widgets on SpaceLynk - Daniel - 22.11.2018 (22.11.2018, 12:13)suporte.arqtech Wrote: Hello, guys. Hm, technically would do but 1000 widgets means X x 1000 objects which can be a problem if not well designed. If you have HW 3.0 then it might handle. If you put all on KNX TP then I'm more than sure it will not as bus wont handle it. RE: Widgets on SpaceLynk - suporte.arqtech - 22.11.2018 They will be divided in several lines, the SL will be on the main line wich has no other devices. I´ll let only the necessary information go to SL (like fault, switch, valor and status). RE: Widgets on SpaceLynk - buuuudzik - 22.11.2018 Could you describe what kind of control you try create for every lamp? How this widget will look and how you will open it? There are a few methods how to do this without creating 1000 widgets. RE: Widgets on SpaceLynk - Erwin van der Zwart - 22.11.2018 Hi, Why don’t you just create 1 widget with a value box for setting the GW 1 to xx and a value box with EVG nr. Under this you create a slider and a on/off button. Then you can handle the rest in a single script.. Code: GW = grp.getvalue('1/1/1') BR, Erwin RE: Widgets on SpaceLynk - CHOUAIBOU - 22.11.2018 (22.11.2018, 21:03)Erwin van der Zwart Wrote: hHi, Hi Erwin, Great ! There are small errors on lines 3 (-- bit value) and line 5 ('1/1/4') Do you have a solution to display string in the same time, along with GW and EVG numbers ? B.R, Chouaibou. RE: Widgets on SpaceLynk - Erwin van der Zwart - 23.11.2018 Hi, Yes i noticed the error (and corrected them), i should stop posting from iPhone, it doesn't work smooth (: What do you mean by string? What should it display? You could add this to display the group address name of the controlled EVG by a separate script attachted to the selection box events : Code: GW = grp.getvalue('1/1/1') Erwin RE: Widgets on SpaceLynk - CHOUAIBOU - 23.11.2018 (23.11.2018, 08:49)Erwin van der Zwart Wrote: Hi, Hi Erwin, That exactly what I mean by string, group address name. B.R, Chouaibou. RE: Widgets on SpaceLynk - suporte.arqtech - 26.11.2018 (22.11.2018, 21:03)Erwin van der Zwart Wrote: Hi, Hello, that´s a very interesting way to do it, I really didn´t think out this idea... Thanks. RE: Widgets on SpaceLynk - DGrandes - 17.12.2018 Hello, I would like to do something similar but without having to enter the address manually. I have a visualization with a lot of blinds (I visualize the state) and what I want is to make a general widget for all these blinds. I want this: When I click on the status icon, open the widget and update a table that I read when using the icons inside the widget. I do not know how to execute a script using javascript when I click on the shutter status icon that reads the group address of that icon. All these icons would have the same class. Thanks RE: Widgets on SpaceLynk - Erwin van der Zwart - 17.12.2018 Hi, Should be possible with this custom JS: Code: $(function(){ Erwin RE: Widgets on SpaceLynk - DGrandes - 18.12.2018 Thanks! It Work Perfectly. Another question: I want to add a byte button that send shutter value (with circular bar or linear bar), not fixed value. But when I add the class with the same java script code, the value icon don´t open value bar in widget. Can you help me? Thanks RE: Widgets on SpaceLynk - Erwin van der Zwart - 18.12.2018 Hi, I don’t fully understand what you are trying to do.. Can you eleborate? BR, Erwin RE: Widgets on SpaceLynk - DGrandes - 18.12.2018 Hi, sorry for my english level.. I want to include a "in line" slider or circular button in the widget, the same that apear whhen you put a byte object icon. This slider will have "35/7/3" group adress. When I write a value in this slider, i want to read it and send it to the corresponding shutter adress |