Hello,
Is it possible to use JavaScript sort with CC? I tried adding
in the header but I don't think it likes it. Any idea? Thank you.
http://www.javascripttoolbox.com/lib/table/index.php
http://www.kryogenix.org/code/browser/sorttable/
Is it possible to use JavaScript sort with CC? I tried adding
<script type="text/javascript" src="/includes/js/table.js"></script>
in the header but I don't think it likes it. Any idea? Thank you.
http://www.javascripttoolbox.com/lib/table/index.php
http://www.kryogenix.org/code/browser/sorttable/
Hi batmon,
I don't know much about ChronoConnectivity - but Joomla has this functionality built in - check out the "JHTML grid.sort" code in the API. Here's an example from an admin table
Bob
I don't know much about ChronoConnectivity - but Joomla has this functionality built in - check out the "JHTML grid.sort" code in the API. Here's an example from an admin table
<th width='8%' ><?php echo JHTML::_('grid.sort', 'First name ', 'firstname',
@$this->lists['order_Dir'], @$this->lists['order'] ); ?></th>
<th width='8%' ><?php echo JHTML::_('grid.sort', 'Last name ', 'lastname',
@$this->lists['order_Dir'], @$this->lists['order'] ); ?></th>
Bob
Hi batmon,
the feature will be added later but as Bob said you may need to try Joomla's way, its already implemented in the Connectivity admin, you may look at the code there!
Regards
Max
the feature will be added later but as Bob said you may need to try Joomla's way, its already implemented in the Connectivity admin, you may look at the code there!
Regards
Max
This topic is locked and no more replies can be posted.