Showing multiple related records

Questions, tips and tricks and techniques for scripting in Servoy

Showing multiple related records

Postby Riccardino » Sun Nov 09, 2003 3:47 pm

Hi,

is it possible to show all the related records of a foundset without using a loop?
User avatar
Riccardino
 
Posts: 911
Joined: Thu Apr 24, 2003 11:42 am
Location: Ferrara, Italy

Postby jcompagner » Sun Nov 09, 2003 8:26 pm

What do you mean with show?
(show directly the complete count?)
Because the record you show (on screen) will be there ofcourse.

If you just want to get all the complete count.
You don't have to loop through all the records.
Just set the recordIndex to maxRecordIndex until recordIndex == maxRecordIndex

while(controller.recordIndex < controller.getMaxRecordIndex())
{
controller.recordIndex = controller.getMaxRecordIndex()
}
controller.recordIndex = 1;
User avatar
jcompagner
 
Posts: 8841
Joined: Tue May 27, 2003 7:26 pm
Location: The Internet

Postby Riccardino » Sun Nov 09, 2003 9:37 pm

jcompagner wrote:What do you mean with show?
(show directly the complete count?)
Because the record you show (on screen) will be there ofcourse.


For instance: If I have a contacts table I would find all the related email addresses of the current contacts foundset.
User avatar
Riccardino
 
Posts: 911
Joined: Thu Apr 24, 2003 11:42 am
Location: Ferrara, Italy

Postby jcompagner » Mon Nov 10, 2003 2:01 pm

ahh you just want the get a array from the current foundset for a specifiek (related) value column?

You have to loop for that yes.
User avatar
jcompagner
 
Posts: 8841
Joined: Tue May 27, 2003 7:26 pm
Location: The Internet

Postby Riccardino » Mon Nov 10, 2003 3:34 pm

jcompagner wrote:ahh you just want the get a array from the current foundset for a specifiek (related) value column?


Exactly
jcompagner wrote:You have to loop for that yes.


Ok: no problems I just wanted to be sure, before writing the method... :)
User avatar
Riccardino
 
Posts: 911
Joined: Thu Apr 24, 2003 11:42 am
Location: Ferrara, Italy


Return to Methods

Who is online

Users browsing this forum: No registered users and 3 guests

cron