This should do the trick ...
Query Render Script
widget.bind("dataBound", function (e) {
if (widget.items().length === 1) {
widget.select("tr:eq(0)")
parser.onTableClick("tr:eq(0)", widget)
}
})
With this approach, you might not need this line:
widget.select("tr:eq(0)")