Master/Detail pages from results array

junkyarddog 31 Oct, 2012
Hello,

I'm sure this is simple I just don't know how to do it. I have a search that brings me an array of results only showing certain columns. I would like to have a "details" link in that array that will pull all of the data from the selected primary key and show it on a new page. In the past I've heard it referred to as Master/Detail. If someone could point me in the right direction on this I'd appreciate it. Forgive me I'm a noob. Thanks in advance.
GreyHead 01 Nov, 2012
Hi junkyarddog,

I've done this before by adding a 'View Details' link that opens another window (or a modal/pop-up window). I'd include an record identifier in the link and have it go to a new form which uses a DB Record Loader to access the data and displays it (forms don't need to have any form inputs).

Bob
junkyarddog 01 Nov, 2012
How can I get a 'view details' link to show up for each item in the results array? I think I can figure out how to load it if I can just get the ID to pass to a URL. I have about 1,200 entries and would hate to have to make a link for each one. Can you give me an example?
GreyHead 01 Nov, 2012
Hi junkyarddog,

Presumably there is something in the database that identifies the record. Some kind of id?? The you can add &id=999 in the URL. If the listing is from ChronoForms or ChronoConnectivity then you could use &id={id}

Hard to say more with the info here.

Bob
This topic is locked and no more replies can be posted.