Parsing JSON data by POST

Hi all,

Please look at following code,

		webix.ready(function(){
			webix.ui.fullScreen();
			webix.ui({
				view: "scheduler",
				id: "scheduler",
				url: "/get_activity_list.php?username=taiman",
				datatype:"json"
				
			});

Could I parse the username in POST method instead of GET?

Yep, you can use result of ajax operation as data for the component

http://docs.webix.com/helpers__ajax_operations.html

       var postdata =  webix.ajax().post("/get_activity_list.php", { 
               username:"taiman"
       });
        
        webix.ui({
            view: "scheduler",
            id: "scheduler",
            data: postdata,
            datatype:"json"
        });

thanks