Or, failing that, I could show a few of the fields, name and lastname for example, and make it CLICKABLE so it shows the detailed info when clicked.. How would I do that?
First, I suggest you try using the “bootstrap” template, it’s tableless and is a lot easier to reconfigure.
[pdb_list template="bootstrap"]
Once you have that going, check into using jQuery accordions for your show/hide. If you’re comfortable with some simple Javascript, it’s very easy to get set up.
Many thanks – here is a problem I have.
I need to load the fields first, pick out the firstname, lastname and title from there. Then I display those prominantly and then go back to the record and display all other fields.
So, it seems I need to
1) Go through all the fields, load the 3 special field’s values.
2) display those,
3) reset the field counter
4) Go through the fields again and display all others.
in #3, after I go through all the fields, I do a $this->reset_field_counter(); but it just displays blanks in #4.
Any ideas how to re-scan the fields?
Many thanks!
I got it — I hacked the <beep> out of the bootstrap code, and got my multi-line display.. Many thanks, -t