LogicMachine Forum
Close button widget - Printable Version

+- LogicMachine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: OLD visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: Close button widget (/showthread.php?tid=6233)



Close button widget - mvlasak@suptechnik.cz - 02.01.2026

Is it possible to create a custom button to close the widget?


RE: Close button widget - Daniel - 05.01.2026

Custom widget has option to 'Show close button' next to widget selection.


RE: Close button widget - mvlasak@suptechnik.cz - 08.01.2026

I have a request for the appearance of a close button. It would be easier for me to insert a new button than to reformat the automatically inserted one using CSS.


RE: Close button widget - Daniel - 08.01.2026

Which widget exactly?


RE: Close button widget - mvlasak@suptechnik.cz - 12.01.2026

I have my own widget.
I have marked the required close button in red.


RE: Close button widget - Daniel - 12.01.2026

This is old visualization which is not updated anymore. In New Visu you have close button for custom widgets as configurable option.


RE: Close button widget - admin - 13.01.2026

Place a dummy object on your widget that will act a close button. Set Additional classes to btn-close

Add to Custom JavaScript:
Code:
$(function(){
  $('.btn-close').off('vclick').on('vclick', hideWidgets);
});