0

From documentation 6.2.0 EXTJS, the loadRecord() method is available only in the classic version. How can I replace it in the modern version? I want to get the following effect only in the modern version 6.2.0:

if (record) {
    me.dialog.down("forms").loadRecord(record);
}
Rohit Sharma
  • 1,402
  • 9
  • 20
Umbro
  • 1,984
  • 12
  • 40
  • 99

1 Answers1

1

You can use setValues function like this :

myForm.setValues(record);
Enzo B.
  • 2,341
  • 1
  • 11
  • 33