Page 4: Structure of a Program for Setting the RecordGrid's Appearance and Functiona - Printable Version +- Curl Global Community (https://communities.curl.com) +-- Forum: Tutorials (https://communities.curl.com/forumdisplay.php?fid=3) +--- Forum: Public Training (https://communities.curl.com/forumdisplay.php?fid=4) +---- Forum: Curl IDE Made Easy (https://communities.curl.com/forumdisplay.php?fid=6) +----- Forum: Try 3: Displaying Data in a Grid (https://communities.curl.com/forumdisplay.php?fid=11) +----- Thread: Page 4: Structure of a Program for Setting the RecordGrid's Appearance and Functiona (/showthread.php?tid=58) |
Page 4: Structure of a Program for Setting the RecordGrid's Appearance and Functiona - ashimo - 06-16-2011 Structure of a Program for Setting the RecordGrid's Appearance and Functionality 1. Setting function-modifying options such as 'cells-take-focus?' Code: cells-take-focus? = false, As we found in Basics 1, RecordGrid has many actions that the user can perform. These can be modified by specifying options. Let’s take a brief look at these options. Let’s take a look at what happens when we change the true/false settings. 2. Setting options that affect the appearance Code: display-filler-column? = true, In (1), we touched on the function-modifying options. Here, we’ll look at those options that are used to change the appearance. Try changing the values of the above options to see how they affect the appearance. |