Does DynamicForm or FormItem have a method to set a field title?
Currently I'm doing something like this
var fields = myForm.fields;
fields[0].title = "a brand new title";
myForm.setFields(fields);
Currently I'm doing something like this
var fields = myForm.fields;
fields[0].title = "a brand new title";
myForm.setFields(fields);
Comment