我希望在1行视图,完整的行视图和列出的所有行之间切换数据网格的显示,并在单独的卡片中查看完整的一行。
必须修复的事情如下:
单击1行视图卡(压缩)中的行行或完整行视图卡(展开)中的行行时,在单独的卡中查看一个完整/完整行。我已将此代码用于字段" Line"在行模板中但它无法正常工作:
put fld "Line" into fld "fullLine" of cd "full_Line"
go to cd "full_Line"
我很感激任何帮助。感谢。
Keram
答案 0 :(得分:1)
在行为中,您总是需要使用“我”来引用子控件。这在数据网格中尤其重要,其中有许多组具有名为Line
的字段所以试试:
put fld "Line" of me into fld "fullLine" of cd "full_Line"
go cd "full_Line"
我刚刚重新阅读,你说脚本在线字段本身就是这样:
put the text of me into fld "fullLine" of cd "full_Line"