This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Open Widget by Script
#1
Hi looking for a method of opening a widget (377) via script when an object 0/2/22 is between 1 and 20 and closing it when 0/2/22 is 0
But only to open widget when parent page (vis page 358) is open. Don't want the widget to open on other screens around the home.

Think I saw something in the forum before, similar to this but cant find the post again.

Any help would be grateful.
Reply
#2
You probably refer to this
https://forum.logicmachine.net/showthrea...6#pid16206
------------------------------
Ctrl+F5
Reply
#3
(22.07.2022, 13:42)Daniel Wrote: You probably refer to this
https://forum.logicmachine.net/showthrea...6#pid16206

No but it did take me towards , which is what i was looking at for inspiration 
$(function(){
 
  var openwidget = false;
 
  function openWidget(){ 
  if (currentPlanId == 353){
      if (openwidget == false){
          openwidget = true; 
        // Open widget
      $("#widget-377").removeClass("hide");
          // Position widget (absolute positioned)
      //document.getElementById("widget-5").style.top = "150px";
      //document.getElementById("widget-5").style.left = "150px";
      //document.getElementById("widget-5").style.width = "1024px";
    //document.getElementById("widget-5").style.height = "600px";
      }
  } else {
      // Condition to hide widget
      $("#widget-377").addClass("hide");
      openwidget = false;
    }
  }

  // Initial execution if needed
  openWidget();

  // Add event listener to control elements only for checking on each user input
  $('.item-control').on( "click", function() {
      openWidget();
  });
 
});
Reply


Forum Jump: