* Replace control(array('type' => 'xxx')) to control(array('control' => 'xxx')).

This commit is contained in:
liumengyi
2024-02-29 16:10:27 +08:00
committed by caoyanyi
parent 63c28d7648
commit 2a3cce20b0
11 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -265,7 +265,7 @@ $config->testcase->importfromlib->dtable->fieldList['id']['fixed'] = false;
$config->testcase->importfromlib->dtable->fieldList['branch']['name'] = 'branch';
$config->testcase->importfromlib->dtable->fieldList['branch']['title'] = $lang->testcase->branch;
$config->testcase->importfromlib->dtable->fieldList['branch']['type'] = 'control';
$config->testcase->importfromlib->dtable->fieldList['branch']['control'] = array('type' => 'picker', 'props' => array('required' => true));
$config->testcase->importfromlib->dtable->fieldList['branch']['control'] = array('control' => 'picker', 'props' => array('required' => true));
$config->testcase->importfromlib->dtable->fieldList['branch']['width'] = '200px';
$config->testcase->importfromlib->dtable->fieldList['pri']['name'] = 'pri';
@@ -286,7 +286,7 @@ $config->testcase->importfromlib->dtable->fieldList['fromModule']['type'] = 'ca
$config->testcase->importfromlib->dtable->fieldList['module']['name'] = 'module';
$config->testcase->importfromlib->dtable->fieldList['module']['title'] = $lang->testcase->module;
$config->testcase->importfromlib->dtable->fieldList['module']['type'] = 'control';
$config->testcase->importfromlib->dtable->fieldList['module']['control'] = array('type' => 'picker', 'props' => "RAWJS<window.getModuleCellProps>RAWJS");
$config->testcase->importfromlib->dtable->fieldList['module']['control'] = array('control' => 'picker', 'props' => "RAWJS<window.getModuleCellProps>RAWJS");
$config->testcase->importfromlib->dtable->fieldList['module']['width'] = '200px';
$config->testcase->importfromlib->dtable->fieldList['type']['name'] = 'type';