hi.. how do i sort the client list (on the clock popup) by alphabetical order instead of it being sorted by which clientID was created first? something with the javascript?
function getInitialClient() {
for (clientKey in clientProjectsHash) {
if(clientKey > 0) {
return clientKey;
}
}
}
or
function populateClientSelect(selectedClientId) {
//get the client select
var clientSelect = document.getElementById('clientSelect');
hi.. how do i sort the client list (on the clock popup) by alphabetical order instead of it being sorted by which clientID was created first? something with the javascript?
function getInitialClient() {
for (clientKey in clientProjectsHash) {
if(clientKey > 0) {
return clientKey;
}
}
}
or
function populateClientSelect(selectedClientId) {
//get the client select
var clientSelect = document.getElementById('clientSelect');