Method GET http request

i want to know is there any example to show the way how to create simple html form with get method by using webix ui, so after we click button, the url will load and return ?parameter=value just like simple html form… i used ajax() but the page didn;t reload. I need a very similar example with this (Tryit Editor v3.7)
but with webix implementation… why it so complex to be implemented in simple purposes

Please check https://snippet.webix.com/886hnt11

     	click:function(){
          const data = this.getFormView().getValues();
          webix.send("http://some.com/dummy.html", data, "GET", "_blank")
        }

webix.send works the same as common HTML form sending.

https://docs.webix.com/api___send.html

Thanks maksim it’s works…