Gridsuggest DataFeed Default value

I am evaluating this product for our business and have a question pertaining to the gridsuggest component.

I notice that I can allow selection within the grid using select: “row”, but I am unable to select a default value (using dataFeed: url, server data). How can I select the first row in the grid as the default? I don’t know what any of the data values will be until the call to the server is made.

You can write something like next

dtable.load("url").then(function(){
   //after data loading
   this.select(this.getFirstId());
});