23.11.2020, 07:38 
		
	
	
		Hi all,
in a JS script, I know how to detect the state of a Bool object, as
but how to detect that a String object has just been clicked (for example for modification by the user)?
Goog week !
	
	
	
in a JS script, I know how to detect the state of a Bool object, as
Code:
$(function(){
  
  // managing widget-20
  
  // open widget
  grp.listen('33/1/7', function(object, state) {
    if (state == 'value' && object.value == "1" ) { 
        // Command to show widget
        $("#widget-20").removeClass("hide");
    }
  }, true); // set to true to execute on same object value
});but how to detect that a String object has just been clicked (for example for modification by the user)?
Goog week !
 
 

 
