a-z headings for results
Can someone point me in the direction to have the results sorted like below? I have the results sorting fine, but need to add the Alphabetical category heading based on the results.
A
alpha
adam
B
banana
boat
Thanks!
Can someone point me in the direction to have the results sorted like below? I have the results sorting fine, but need to add the Alphabetical category heading based on the results.
A
alpha
adam
B
banana
boat
Thanks!
this will require hand coding to accomplish.
Send a copy of your results page, and i can give further details.
i found this example through google:
http://stackoverflow.com/questions/7812097/listing-array-values-alphabetically-with-letter-heading
Here it is, Jason...
Appreciate any assistance.
line 256 starts the rrepeat region:
<?php do { ?>
change that to:
<?php $last = ''; ?>
<?php do { ?>
<?php
$current = strtolower($row_rsProducts['prodCategories'][0]);
if ($last != $current) {
echo("<tr class=\"".$WARRT_AltClass1->getClass(true)."\" >");
echo("<td>".strtoupper($current) . "</td>");
echo("</tr>");
$last = $current;
}
?>
Jason,
I made the change, but it didn't change anything...was I supposed to put some reference to the Category Heading somewhere?
Thanks...
I'll need to troubleshoot directly, see the private message section.
since you are using a grid layout, the code needed to be moved inside the repeat selection.
In the design view, I don't see anything that shows me the Category Heading...A, B, C, etc. Where do I find it in the code so that I can apply some CSS to it, simply to make it BOLD.
Thanks again...
Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.