Dynamics AX 7网格线默认

时间:2016-05-05 17:23:24

标签: axapta microsoft-dynamics dynamics-ax7

我正在AX 7中创建一个新网格。有人知道如何防止网格创建“默认行”吗?

这是我打开带有空网格的表单时的样子: Empty form with default line

以下是我希望它的样子: What it should appear on opening

我已经玩过表上的insert方法,表单上的init方法,以及网格控件上的一些方法,但我似乎无法为此找到合适的解决方案。

1 个答案:

答案 0 :(得分:3)

它应该是附加到网格的public function contains($string, $pieces){ $flag = false; $this->getWords(); $arr = $this->_data; // Get everything from DB $words = array(); $foundWords = array(); foreach($arr as $key) { $words[] = $key->word; // Put words in array } foreach($words as $item) { if (in_array($item, $words)) { // Check if entered words are in the DB array $foundWords[] = $item; // Put already existing words in array print_r($foundWords); echo "Match found: "; echo $item . '<br>'; // Echo found words $flag = true; //set true and break from the loop break; }else{ echo "Not found!"; $flag = false; } } return $flag; } 上的属性。 DataSource。见截图。

Screenshot