Hi Richard, some comments on your code:
On Sun, 27 Sep 2015 17:59:42 -0500 Richard Reina <[email protected]> wrote: > 2015-09-27 11:24 GMT-05:00 Dave Cross <[email protected]>: > > > > > On 27/09/15 16:34, Richard Reina wrote: > > > > I think I am going to try to figure out how to use an array reference > >> instead. Traveling so can't try it until I get back tomorrow. > >> > > > > You can, of course, try whatever approach you want. But my second solution > > will work. > > > > Dave... > > > > -- > > > > Hi Dave, > > This did in fact work. Here is how I ended up incorporating your solution. > > <div class="well" style="max-height: 300px;overflow: auto;"> > <ul class="list-group fancy-list-items"> <!-- <ul > class="list-group checked-list-box"> --> > <table style="width:100%"> > <% FOREACH Pat IN Pats.values.sort('SNAME') -%> > <tr class="list-group-item"> > <td width="25"><% Pat.ID %> > <td width="70"><% Pat.SNAME %> > <td width="75"><% Pat.ANAME %> > <td width="35"><% Pat.SSN %> > <td width="35"><% Pat.YR %> > <td width="250"><% Pat.CHNAME %> > <td width="550"><% Pat.DESCRIP %> 1. You're missing the closing tag - "</td>". 2. Are you sure you're avoiding https://en.wikipedia.org/wiki/Cross-site_scripting ? Also see http://perl-begin.org/tutorials/bad-elements/#code_and_markup_injection . Regards, Shlomi Fish -- ----------------------------------------------------------------- Shlomi Fish http://www.shlomifish.org/ Escape from GNU Autohell - http://www.shlomifish.org/open-source/anti/autohell/ By the time Chuck Norris found out who John Galt is, Summer Glau already had sex with him. — http://www.shlomifish.org/humour/bits/facts/Summer-Glau/ Please reply to list if it's a mailing list post - http://shlom.in/reply . _______________________________________________ dancer-users mailing list [email protected] http://lists.preshweb.co.uk/mailman/listinfo/dancer-users
