While I was working on the enabling and disabling the form controls I noticed that there are two kinds of form elements. One is the object of the form control class which is accessible as below:
FormControl _control = _formRun.design().controlNum(i)
The other type of the form's elements having "build" word which is accessible as follow:
FormBuildControl _controlBuild = _formRun.form().design().controlNum(i)
Could you please explain what are the differences and when should we use formControl class and when should we use FormBuildControl?
ps: I discover that I cannot enable or editable a field or button using FormBuildControl.