John,
You must have a where clause defined that is preventing the display of the blank row.  Property..'refresh', re-fetches the data from the table to refresh the display. You're appending a row to the table, but without any data in it, it may not meet the where clause criteria, so it doesn't get displayed with the refresh.  There's no need to do the refresh, unless that is your intent - to re-fetch the data from the table.  So my guess is, it really has been adding the rows, just not showing them - check your table for null value rows.
Dawn


From: John Engwer [mailto:[EMAIL PROTECTED]
Sent: Monday, October 17, 2005 12:47 PM
To: RBG7-L Mailing List
Subject: [RBG7-L] - RE: Add row property

I removed the PROPERTY TABLE PURCHASE 'REFRESH’ from the command list and now it works.  When I add it back in, it will not add a row.  ???

 

 

John Engwer

 


From: [email protected] [mailto:[email protected]] On Behalf Of Bill Eyring
Sent: Monday, October 17, 2005 11:45 AM
To: RBG7-L Mailing List
Subject: [RBG7-L] - RE: Add row property

 

John

 

Make sure your table settings for table PURCHASE has Add New Rows to the Table  checked.

 

Then add the following to your ADD ROW button eep;

 

PROPERTY TABLE purchase 'APPEND'  then;

 

PROPERTY TABLE purchase 'LAST' will take you to the last added row in the scrolling region.

 

 

Bill Eyring 

 


From: [email protected] [mailto:[email protected]] On Behalf Of John Engwer
Sent: Monday, October 17, 2005 10:00 AM
To: RBG7-L Mailing List
Subject: [RBG7-L] - Add row property

I have a form that contains a region for editing data in a table named purchase. Outside of the region I have a Speed Button that when selected fires an EEP to add a new row.  I am trying to use the following property within the EEP to add the row and it is not working.

 

PROPERTY TABLE purchase 'APPEND'

PROPERTY TABLE PURCHASE 'REFRESH'

 

If I use the predefined “Add Row” within the Speed Button it works OK.  However, I need to issue other property commands along with the Add Row so I need to do it from within a Custom EEP.

 

Am I using the wrong property command? (version 7.1 final build) 

 

John Engwer

 

 

Reply via email to