WIX radio button group

后端 未结 1 811
谎友^
谎友^ 2021-02-10 04:28

I am stuck in doing with WIX radio group button,I want to know

  1. Whether i can able to disable text box based on selection of WIX radio group button like mention

1条回答
  •  独厮守ぢ
    2021-02-10 04:38

    Assuming you have your Radio Button as following:

    
        
        
    
    

    you can control visibility or availablility of other elements in the dialog by using Condition sub-element:

    
         "1"]]>
        
    
    
    
        SOME_PROPERTY = "0">
        SOME_PROPERTY = "1">
    
    

    Following the request in comments, posting an example of updating property with values of Edit elements (some required control attributes are ommited for clarity):

    
    
    
    
        
            R="USE_A"
            R="USE_B"
        
    
        
            
                
                
            
        
    
        
            R="USE_B"
            R="USE_A"
        
        
            R="USE_A"
            R="USE_B"
        
    
    

    0 讨论(0)
提交回复
热议问题