I have the following in my server-side php and I would like to sort it by id and not month...
$out=Editor::inst( $db, 'lk_months', 'id')
->field(
Field::inst( 'id' ),
Field::inst( 'month' )
)
->process($_POST)
->json();