How to change automatic alphabetical sorting at Track Director list?

how to change automatic alphabetical sorting at Track Director list?

Hi @iccm,

Which of our applications are you using, and what version? What list do you mean? A screenshot might be useful.

Regards,
Alec Smecher
Public Knowledge Project Team

Hi, Alec,

MS-028, Directors. We were asked to change the order, not automatically
arranged alphabetically.
Please visit here
http://www.sci-en-tech.com/ICCM/index.php/iccm2017/2017/schedConf/trackPolicies

Hi @iccm,

That track directors list doesn’t have ordering capabilities – if you’re interested in the SQL query that generates the list, it’s implemented in classes/conference/TrackDirectorsDAO.inc.php in the getDirectorsByTrackId function:

'SELECT u.* FROM users AS u, track_directors AS e WHERE u.user_id = e.user_id AND e.sched_conf_id = ? AND e.track_id = ? ORDER BY last_name, first_name',

…but there’s nowhere in the application to manually define an ordering for this, so it’s something you’d have to add yourself.

Regards,
Alec Smecher
Public Knowledge Project Team