切换1行 - 完整的线视图+在单独的卡中查看一个完整的行

时间:2013-12-12 11:21:23

标签: livecode

我希望在1行视图,完整的行视图和列出的所有行之间切换数据网格的显示,并在单独的卡片中查看完整的一行。

必须修复的事情如下:

单击1行视图卡(压缩)中的行行或完整行视图卡(展开)中的行行时,在单独的卡中查看一个完整/完整行。我已将此代码用于字段" Line"在行模板中但它无法正常工作:

 put fld "Line" into fld "fullLine" of cd "full_Line"  
 go to cd "full_Line"

以下是堆栈的链接:https://dl.dropboxusercontent.com/u/99863601/Data%20grid%20Form-1%20line%20and%20complete%20line%20view%2Bopen%20Full%20line.zip

我很感激任何帮助。感谢。

Keram

1 个答案:

答案 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"