Validation to BoxLayout Label

Hi,

I am displaying the textfield  inside in box layout. I want to display the error message as box layout if text field is not having the value.

here is the code

      a!forEach(
          items: local!dataSubset,
          expression: a!boxLayout(
            label: " ",
          
            contents: {
              a!sectionLayout(
                label: " ",
               
                contents: a!columnsLayout(
                  columns: {
                    a!columnLayout(
                      contents: {
                        a!columnsLayout(
                          columns: {
                            a!columnLayout(
                            contents:{
                            a!textField(
                              label:"detail",
                              value:ri!excelDetails.CustomerName
                            )
                            }),
                        
                          }
                        )
                      }
                    )
                  }
                ),
               
              ),
           
            },
            style: "#98002E",
            isCollapsible: true,
            isInitiallyCollapsed: true,
            marginBelow: "STANDARD"
           
          )
        )
      Plese help me. thanksin Advance

  Discussion posts and replies are publicly visible