'2019/11/27'에 해당되는 글 1건

  1. 2019.11.27 Webix first simple source

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

<!DOCTYPE HTML>
<html>
    <head>
    <link rel="stylesheet" href="http://cdn.webix.com/edge/webix.css" type="text/css"> 
    <script src="http://cdn.webix.com/edge/webix.js" type="text/javascript"></script>  
    </head>
    <body>
        <script type="text/javascript" charset="utf-8">

		/* place for UI configuration */
		webix.ui({
		  rows:[
			  { view:"template", 
				type:"header", template:"My App!" },
			  { view:"datatable", 
				autoConfig:true, 
				data:{
				  title:"My Fair Lady", year:1964, votes:533848, rating:8.9, rank:5
				}
			  }
		  ]
		});
        </script>
    </body>
</html>