Thanks Peter, I seem to have got it all working, and the dropdown sources are going back to the server to refresh each time I call them – perfect 
For anyone else finding this, I had to use the createeditor function in the columns definition:
{
text : ‘Trade’,
datafield : ‘trade_id’,
columntype : ‘dropdownlist’,
createeditor : function(row, cellvalue, editor) {
editor.jqxDropDownList({
displayMember : ‘name’,
valueMember : ‘id’
});
}