First add a method on the form to populate records in the temporary table:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | public LabelsTable populateRecords() { SysDictTable dictTable = new SysDictTable(tableNum(PurchLine)); SysDictField dictField; TreeNode treeNode; LabelsTable labelsTableLocal; // Temporary table (InMemory) FieldId fieldId = dictTable.fieldNext(0); while (fieldId) { dictField = dictTable.fieldObject(fieldId); if (dictField.isSql() && !dictField.isSystem() && dictField.name() != "Modified" ) { treeNode = dictField.treeNode(); labelsTableLocal.Field = dictField.name(); labelsTableLocal.Label = treeNode.AOTgetProperty( "Label" ); labelsTableLocal.insert(); } fieldId = dictTable.fieldNext(fieldId); } return labelsTableLocal; } |
Then override form’s init() method and add the following code to display the temporary table data on the form:
1 2 3 4 5 6 | public void init() { super(); LabelsTable.setTmpData(element.populateRecords()); } |
转载请注明:ww12345678 的部落格 | AX Helper » Using Temporary Table as Form’s Datasource