joint  
                (Mike)
               
                 
              
                  
                    June 7, 2024, 10:34am
                   
                   
              1 
               
             
            
              Hello! 
I have a group of widgets in my custom filter
And one of these widgets changes some values in the filter and also calls some functions which trigger modification of other variables displayed on other widgets. But there values are not updated.
How to force update widget values after every time some over widget is end being edited?
Thank u 
Best regards, 
Mike
             
            
               
               
               
            
            
           
          
            
              
                joint  
                (Mike)
               
              
                  
                    June 7, 2024, 10:38am
                   
                   
              2 
               
             
            
              Could it be achived as follows?
	<StringVectorProperty
	   name="X"
	   command="GetX"
	   number_of_elements="1"
	   default_values="0 0 0"
	</StringVectorProperty>
 
Thanks!
             
            
               
               
               
            
            
           
          
            
              
                mwestphal  
                (Mathieu Westphal (Kitware))
               
              
                  
                    June 7, 2024, 12:16pm
                   
                   
              3 
               
             
            
              
 Mike:
 
And one of these widgets changes some values in the filter and also calls some functions which trigger modification of other variables displayed on other widgets. But there values are not updated.
How to force update widget values after every time some over widget is end being edited?
 
 
Im afraid I do not understand the usecase, please share some XML code.
	<StringVectorProperty
	   name="X"
	   command="GetX"
	   number_of_elements="1"
	   default_values="0 0 0"
	</StringVectorProperty>
 
This looks like an information property missing the information_only .
             
            
               
               
               
            
            
           
          
            
              
                joint  
                (Mike)
               
              
                  
                    June 7, 2024, 12:17pm
                   
                   
              4 
               
             
            
              When the information_only is used?
             
            
               
               
               
            
            
           
          
            
              
                mwestphal  
                (Mathieu Westphal (Kitware))
               
              
                  
                    June 7, 2024, 12:18pm
                   
                   
              5 
               
             
            
              It can be used for many things, including:
providing information about the timesteps a reader provide in the ParaView UI 
updating another widgets domain 
 
The second point may be what you are looking for but Im not sure because I do not understand your usecase yet.