Re: Another DataGrid Question

2010-05-17 Thread Bob Sneidar
Hi Joe. There is an excellent dictionary for Datagrids on BlueMangoLearning.com. Please see http://revolution.screenstepslive.com/spaces/revolution_tools/manuals/datagrid You can walk through the lessons which will get you up to speed on the prescribed methods for interacting with Datagrids,

Re: Another DataGrid Question

2010-05-16 Thread Andre.Bisseret
Bonjour, I searched for a solution in case you don't know the number of the line I tested the following script (in a button) : local tIndex,tLineData,tName,tLine on mouseUp ask Which symbol? if the result is cancel then exit mouseUp put it into tSymbol dispatch

Another DataGrid Question

2010-05-15 Thread LunchnMeets
Hi Everyone First of all thanks to Zryip for the answer to my last grid question. Now that problem is solved, but I have another. I have a dataGrid with 8 columns and 1000 rows. Knowing the data of a line of column 2, I need to retrieve the data of column 1 of that line. I don't want to

Re: Another DataGrid Question

2010-05-15 Thread zryip theSlug
2010/5/15 lunchnme...@aol.com: Hi Everyone First of all thanks to Zryip for the answer to my last grid question. Now that problem is solved, but I have another. You're welcome ;) I have a dataGrid with 8 columns and 1000 rows. Knowing the data of a line of column 2, I need to retrieve the

Another DataGrid question

2010-02-09 Thread Jeff Massung
Sorry, can't find this in the documentation (although it's probably there and I'm just blind)... Is there a way for me to get the template group for the index of a DG? Something like... get the dgDataControl[2] of group MyDataGrid Jeff M. ___

Re: Another DataGrid question

2010-02-09 Thread Trevor DeVore
On Feb 9, 2010, at 4:32 PM, Jeff Massung wrote: Sorry, can't find this in the documentation (although it's probably there and I'm just blind)... Is there a way for me to get the template group for the index of a DG? Something like... get the dgDataControl[2] of group MyDataGrid I don't

DataGrid question

2010-02-08 Thread Jeff Massung
I have a DataGrid form where each row acts like a kind of folder. When you click on the row, it expands out to show everything that's underneath it. This works pretty well so far, but I have a basic problem with the scrollbar that I'm hoping is trivial to solve: In the layoutControl message is

Re: DataGrid question

2010-02-08 Thread Trevor DeVore
On Feb 8, 2010, at 3:05 PM, Jeff Massung wrote: In the layoutControl message is where I either expand or contract the final rectangle for the template group. However, the DG doesn't seem to understand this. Let's say I have only 1 folder with a large list of items under it. I expand out

Re: DataGrid question

2010-02-08 Thread Jeff Massung
Yes, I do. Sorry, forgot to mention that. On Mon, Feb 8, 2010 at 2:23 PM, Trevor DeVore li...@mangomultimedia.comwrote: On Feb 8, 2010, at 3:05 PM, Jeff Massung wrote: In the layoutControl message is where I either expand or contract the final rectangle for the template group. However, the

Re: DataGrid question

2010-02-08 Thread Jeff Massung
Trevor, if you'd like, I can send you a bare-bones sample app that shows the exact same behavior. Note: the items within the folder to expand out and are visible just fine. Just the DG scrollbar acts as thought they aren't visible and all folders are closed. Jeff M. On Mon, Feb 8, 2010 at 2:29

Re: DataGrid question

2010-02-08 Thread Trevor DeVore
On Feb 8, 2010, at 3:29 PM, Jeff Massung wrote: Yes, I do. Sorry, forgot to mention that. I just uploaded some updates to the manual that may prove helpful. The first lesson has an example stack that goes along with it. The key when updating a rows data and redrawing the Data Grid after

Re: DataGrid question

2010-02-08 Thread Jeff Massung
Trevor, I actually figured out my bug, but thanks for adding your tutorial. It actually had a few tidbits that I didn't know about which allowed me to simplify a few other scripts. ;-) Jeff M. On Mon, Feb 8, 2010 at 3:40 PM, Trevor DeVore li...@mangomultimedia.comwrote: On Feb 8, 2010, at

Re: Another Datagrid question

2009-12-10 Thread Trevor DeVore
On Dec 9, 2009, at 10:15 PM, william humphrey wrote: How do you do a returninfield? It doesn't work if you put it in the group script. I want to return one of the cells in the selected line of a dataGroup when the return key is hit. If you have an editable field in the Data Grid then there

Another Datagrid question

2009-12-09 Thread william humphrey
How do you do a returninfield? It doesn't work if you put it in the group script. I want to return one of the cells in the selected line of a dataGroup when the return key is hit. ___ use-revolution mailing list use-revolution@lists.runrev.com Please

Re: dataGrid question

2009-11-24 Thread Trevor DeVore
On Nov 24, 2009, at 1:42 AM, Yves COPPE wrote: When the fld of the row of the form table is in edit mode, I can select one of more words at this moment I would like something like cntrl-clic or btn 3 of the mouse to pull down a menu with an item Store this words but when the menu appears, my

Re: dataGrid question

2009-11-24 Thread Yves COPPE
Le 24 nov. 09 à 14:54, Trevor DeVore a écrit : On Nov 24, 2009, at 1:42 AM, Yves COPPE wrote: When the fld of the row of the form table is in edit mode, I can select one of more words at this moment I would like something like cntrl-clic or btn 3 of the mouse to pull down a menu with an

Re: dataGrid question

2009-11-23 Thread Trevor DeVore
On Nov 22, 2009, at 6:57 AM, Yves COPPE wrote: I have a question with DataGrid A datagrid in Form Style I have a fld body that I can edit by doubleclick (on mouseDoubleUp ...) Now my text is editable I'd like to make a selection in the edited Text (this can automatically) but I'd like to

Re: dataGrid question

2009-11-23 Thread Yves COPPE
Le 24 nov. 09 à 00:34, Trevor DeVore a écrit : On Nov 22, 2009, at 6:57 AM, Yves COPPE wrote: I have a question with DataGrid A datagrid in Form Style I have a fld body that I can edit by doubleclick (on mouseDoubleUp ...) Now my text is editable I'd like to make a selection in the

dataGrid question

2009-11-22 Thread Yves COPPE
Hello, I have a question with DataGrid A datagrid in Form Style I have a fld body that I can edit by doubleclick (on mouseDoubleUp ...) Now my text is editable I'd like to make a selection in the edited Text (this can automatically) but I'd like to pick up this selectedtext in a handler,

Re: DataGrid Question

2009-11-11 Thread charles61
--Select the first cell to start editing dispatch EditCell to Group dataGrid 1 with First, theLineNo \code Regards Chris Datagrid test.rev.zip (9K) Download Attachment View message @ http://n4.nabble.com/DataGrid-Question-tp347601p584587.html To unsubscribe from Re: DataGrid

Re: DataGrid Question

2009-11-07 Thread charles61
dataGrid 1 with First, theLineNo \code Regards Chris -- View this message in context: http://n4.nabble.com/DataGrid-Question-tp347601p584542.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-revolution

Re: DataGrid Question

2009-11-07 Thread ChrisWood
dispatch AddData to Group dataGrid 1 with theNewRecord, theLineNo --Select the first cell to start editing dispatch EditCell to Group dataGrid 1 with First, theLineNo \code Regards Chris View message @ http://n4.nabble.com/DataGrid-Question-tp347601p584542.html To unsubscribe from Re

Re: DataGrid Question

2009-10-26 Thread Trevor DeVore
On Oct 23, 2009, at 11:09 AM, Charles Szasz wrote: Using the RevList and Rev tutorials I have gone through examples of a DataGrid being used to display information from a file. I have not seen any examples of where the user enters the information in an app to get it displayed in a DataGrid.

Re: DataGrid Question

2009-10-26 Thread Chris Wood
examples of where the user enters the information in an app to get it displayed in a DataGrid. If anyone has any simple examples of using DataGrid in this manner, I would really appreciate it you would share it with me. -- View this message in context: http://www.nabble.com/DataGrid

Re: DataGrid Question

2009-10-26 Thread Chris Wood
dataGrid 1 with theNewRecord, theLineNo --Select the first cell to start editing dispatch EditCell to Group dataGrid 1 with First, theLineNo \code Regards Chris -- View this message in context: http://www.nabble.com/DataGrid-Question-tp26028143p26070937.html Sent from

DataGrid Question

2009-10-23 Thread Charles Szasz
in this manner, I would really appreciate it you would share it with me. -- View this message in context: http://www.nabble.com/DataGrid-Question-tp26028143p26028143.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use

Simple datagrid question

2009-09-22 Thread Beynon, Rob
I have a nascent application that uses datagrids and in which I would like to set the highlited property of specific rows or even the whole datagrid within the program. I can't seem to work out how to approach this. Help much appreciated. Thanks Rob This email was sent on Tue, Sep 22, 2009 at

Re: Simple datagrid question

2009-09-22 Thread Trevor DeVore
On Sep 22, 2009, at 6:42 PM, Beynon, Rob wrote: I have a nascent application that uses datagrids and in which I would like to set the highlited property of specific rows or even the whole datagrid within the program. I can't seem to work out how to approach this. Help much appreciated.

Re: Basic DataGrid question

2009-06-08 Thread Trevor DeVore
On Jun 6, 2009, at 5:33 PM, Paul Gabel wrote: This works great! But, before I put the field into the datagrid I need to do an operation on the third item in each line and put the result into the fourth item in each line. An item, of course, is not an item. It's text in a column (I have

Basic DataGrid question

2009-06-06 Thread Paul Gabel
Hello List: Today I'm trying datagrids for the first time. I'm collecting data in a field Collector with a dozen or so lines, and four columns set using: set the tabStops of field Collector to 100,100, etc. Then, after many lines of data have been collected, I use: put fld Collector into

Re: DataGrid question simple?

2009-05-08 Thread Trevor DeVore
On May 7, 2009, at 2:26 PM, Shao Sean wrote: I included this type of code in the group script of the data grid object (group Schema in your case) on mouseUp local theLine local theDataA put the dgHilitedLines of group Schema into theLine put the dgDataOfLine[theLine] of group Schema

DataGrid question simple?

2009-05-07 Thread RevList
I have just started a project that is going to use data grids. I am using a Table and not a Form This should be a simple answer, but I am struggling. I have a Data Grid table and I can load the data in just fine. The table has three columns name as follows Field Name, Field Type and Field ID The

Re: DataGrid question simple?

2009-05-07 Thread Shao Sean
I included this type of code in the group script of the data grid object (group Schema in your case) on mouseUp local theLine local theDataA put the dgHilitedLines of group Schema into theLine put the dgDataOfLine[theLine] of group Schema into theDataA put theDataA[Field Name] into

Datagrid Question

2009-04-27 Thread LunchnMeets
Hi Everyone, I'm enjoying getting into this datagrid thing. So far working with it is far better than the way I used to do some things. Now my question is this. When I click on a datagrid the line is hilited, that's good. But, how do I unhilite that line? Keep up the good work with adding new

Re: Datagrid Question

2009-04-27 Thread Trevor DeVore
On Apr 27, 2009, at 3:36 PM, lunchnme...@aol.com wrote: Hi Everyone, I'm enjoying getting into this datagrid thing. So far working with it is far better than the way I used to do some things. Now my question is this. When I click on a datagrid the line is hilited, that's good. But, how

Re: Datagrid Question

2009-04-27 Thread LunchnMeets
In a message dated 4/27/09 3:47:30 PM, li...@mangomultimedia.com writes: set the dgHilitedLines of group DataGrid to empty Thanks Trevor, that worked like a charm. ** A Good Credit Score is 700 or Above. See yours in just 2 easy steps!

Re: Datagrid question

2009-04-15 Thread LunchnMeets
In a message dated 4/14/09 4:28:50 PM, li...@mangomultimedia.com writes: OK I downloaded the newest Mac version of Studio and I'm excited  about the new datagrid feature. I can see many places to use them, but I can't  figure out how to address the contents or load a grid. Up

Datagrid question

2009-04-14 Thread LunchnMeets
Hi everyone, OK I downloaded the newest Mac version of Studio and I'm excited about the new datagrid feature. I can see many places to use them, but I can't figure out how to address the contents or load a grid. Up until now I've used several scrolling fields to hold data. For simplicity sake

Re: Datagrid question

2009-04-14 Thread Trevor DeVore
On Apr 14, 2009, at 2:40 PM, lunchnme...@aol.com wrote: OK I downloaded the newest Mac version of Studio and I'm excited about the new datagrid feature. I can see many places to use them, but I can't figure out how to address the contents or load a grid. Up until now I've used several