javascript - In Rally js "query" api, can't sort on Blocked -
javascript - In Rally js "query" api, can't sort on Blocked -
i'm modifying "rally" project management software "app".
i added "blocked" field custom table display. when seek sort on "blocked", doesn't seem work.
it doesn't error, seems break ordering next "blocked". is, if set "blocked asc/desc" first order column, have no ordering. if set next 1 or more other columns, seems sorts on preceding columns, not blocked or following.
here relevant section of api javascript modifying:
var queryconfigs = []; queryconfigs[0] = { type : 'hierarchicalrequirement', key : 'stories', fetch: 'objectid,formattedid,name,schedulestate,state,blocked,' + 'owner,username,displayname,tasks,defects,testcases,lastverdict,attributionkanbanstates', query: storycriteria, order: 'blocked asc, attributionkanbanstates asc' }; . . . rallydatasource.findall(queryconfigs, showresults);
has else had luck sorting blocked?
per ws api documentation blocked not sortable. click on hierarchicalrequirement object in object model, , scroll blocked attribute. sortable false.
javascript sorting rally
Comments
Post a Comment