pop up widget change the background object when using it from mobile - 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: pop up widget change the background object when using it from mobile (/showthread.php?tid=5514) |
pop up widget change the background object when using it from mobile - khalil - 14.07.2024 hello dears, When changing the pop up widget value the background set point changed seem like when press on the widget it also press on the setpoint in the background! I have a video describe the issue but I couldn't upload it here! RE: pop up widget change the background object when using it from mobile - Daniel - 15.07.2024 Upload it somewhere and drop a link RE: pop up widget change the background object when using it from mobile - khalil - 15.07.2024 (15.07.2024, 07:34)Daniel Wrote: Upload it somewhere and drop a link Hello Daniel, See the link below https://drive.google.com/file/d/10F1OWEJwBF9Bj4hOrAf4a4fDHy_Qc3Qa/view?usp=sharing RE: pop up widget change the background object when using it from mobile - Daniel - 15.07.2024 send me your backup to PM RE: pop up widget change the background object when using it from mobile - Daniel - 15.07.2024 We were able to reproduce it but for fix you must wait till next FW. There is no quick work around. RE: pop up widget change the background object when using it from mobile - khalil - 15.07.2024 Thank you, I appreciate if there is a quick work around even like changing the widget position to not be above the setpoint! its very noisy for the customer! RE: pop up widget change the background object when using it from mobile - admin - 15.07.2024 Rework the widget so the custom value select does not overlap the circular slider. You can also try setting absolute coordinates for the widget. RE: pop up widget change the background object when using it from mobile - khalil - 15.07.2024 (15.07.2024, 13:53)admin Wrote: Rework the widget so the custom value select does not overlap the circular slider. You can also try setting absolute coordinates for the widget. You can also try setting absolute coordinates for the widget How? RE: pop up widget change the background object when using it from mobile - Daniel - 15.07.2024 Widget position: in widget settings RE: pop up widget change the background object when using it from mobile - khalil - 15.07.2024 (15.07.2024, 14:32)Daniel Wrote: Widget position: in widget settings but its not a widget its a custom value select, could I change its position? RE: pop up widget change the background object when using it from mobile - admin - 16.07.2024 Try this CSS. It will make the value select smaller so it pops below the slider not above. Code: .control-vselect .popover-content { RE: pop up widget change the background object when using it from mobile - khalil - 16.07.2024 (16.07.2024, 05:36)admin Wrote: Try this CSS. It will make the value select smaller so it pops below the slider not above. Thank you admin its solve part of the issue while its still overlap with the setpoint, could we change the value select position like make it below the icon pressed not above? RE: pop up widget change the background object when using it from mobile - admin - 16.07.2024 Set Additional classes to custom-position and add the following code to Custom CSS. It will place the popover to the bottom left corner of the widget. You can adjust the position as needed. Code: .pcontrol-custom-position { RE: pop up widget change the background object when using it from mobile - khalil - 16.07.2024 (16.07.2024, 07:44)admin Wrote: Set Additional classes to custom-position and add the following code to Custom CSS. It will place the popover to the bottom left corner of the widget. You can adjust the position as needed. Thank you good job |