Hello,
Your requirement requires a specific sorting rule, we can implement it as a custom development.
About difference between "Numeric", "Numeric HTML" and "Numeric (Advanced)" sorting types. "Numeric" is used if numbers are stored in plain format (like 2, 5 and etc.), "Numeric HTML" is used when values contain some prefix, postfix and etc., in this case all non-numeric characters (excluding - and .) will be removed before sorting, "Number (Advanced)" is used for float numbers.
BTW, If you don't need "Numeric HTML" sorting then you can modify <joomla_directory>/modules/mod_aridatatables/includes/js/widgets/datatables/js/jquery.dataTables.extra.js file and replace the following code:
Code: |
var x = a.replace(/[^-.0-9]/g, "");
var y = b.replace(/[^-.0-9]/g, "");
|
with the following one:
Code: |
var x = a.replace(/[^-.0-9]/g, "");
var y = b.replace(/[^-.0-9]/g, "");
|
and use "Numeric HTML" type to sort Bible verses.
Regards,
ARI Soft