1 Reply Latest reply: Oct 30, 2014 7:11 AM by $Nith$ RSS

    How to Highlight Fields in a dynamically repeatable subform?

    bharathi_reddy Community Member

      Hi team ,

       

      I have Problem in highlighting the fields in a dynamically repeatable subform. Sub form will have min count = 1 and max Count =20 and subform is flow able.each subform is flow able .

      I have to check only two fields in a subform whether they are null or empty . If the fields are empty or null then i have to highlight the fields .

      Below scripting is not working as per the requirement .

      I have written the below scripting  on click event of a button.

       

      function Test()

      {

      var cnt = subform1.subform2.subform3.instanceManager.count;

      for(var i =0;i <= cnt;i++)

      {

                      var vAccnt = subform1.subform2.resolveNode("subform3["+ i +"]").txtfldAccnt.rawValue;

                      var vAmount= subform1.subform2.resolveNode("subform3["+ i +"]").txtfldAmount.rawValue;

                      if(vAccnt == "" || vAccnt == null)

                      {

                                      var vName = Page1.WorkArea.GLDistribution.sfrmGLDistribution.sfrmDistribution.txtfldGLAccnt.somExpres sion;

                                      var fieldObj = xfa.resolveNode(vName + ".ui.#textEdit.border.fill.color");

                                      fieldObj.value = "255,0,0"; 

                      }   }}

       

      Please help me How i can solve this problem.