Cannot order by a template field in the table component

Something to check: can you go in to the JavaScript Console (“Command+Shift+J” in Chrome), and enter the following:

var BF = skuid.$M(‘Products’).getField(‘Bytes__c’);console.log('Display Type: ’ + BF.displaytype + ', Sortable: ’ + BF.sortable);

replacing Products with the name of your Products model and Bytes__c with the API name of your Bytes formula field.

Let us know what this returns.