Webix Jet scope.show method

I try use webix jet for my app. Create two views with nested. datatable → form
/top/datatable/form

When I change row in table I’d like make url !/top/datatable/form:id=<id_num>, but when I call $scope.show(’./form’, {id: selected_item.id}) result without args #!/top/datatable/form. If use $scope.show({id: selected_item.id}) result #!/top/datatable/:id=/form - but urlchange handler in form-view have empty args.
I create hash manualy scope.show(’./form:id=’ + item.id); I think Is it bad solution. I’d like more info abot show - method. And I think better signature for show
method(path, args) path: string args:obj|array
hash: :args.key1=args.key1_value:args.key2=args.key2_value …

The router updated. Now it can support both syntaxes

scope.show("./form")
scope.show({ id: 1})
scope.show("./form", { id: 1})

You can grab the latest version from github ( or from npm|bower )