Skip to content

Instantly share code, notes, and snippets.

@pthom
Created April 11, 2015 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pthom/c83d9cc45605e97c97fb to your computer and use it in GitHub Desktop.
Save pthom/c83d9cc45605e97c97fb to your computer and use it in GitHub Desktop.
Test webkit Table // source http://jsbin.com/xuboxo
<!DOCTYPE HTML>
<html>
<head>
<meta name="description" content="Test webkit Table">
<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 */
</script>
<script id="jsbin-javascript">
var data = [
{title:"My Fair Lady", year:1964, votes:533848, rating:8.9, rank:5},
{title:"My Fair Lady", year:1964, votes:533848, rating:8.9, rank:5}
];
webix.ui({
rows:[
{ view:"template",
type:"header", template:"My App!" },
{ view:"datatable",
autoConfig:true,
data: data}
]
});
</script>
<script id="jsbin-source-javascript" type="text/javascript">var data = [
{title:"My Fair Lady", year:1964, votes:533848, rating:8.9, rank:5},
{title:"My Fair Lady", year:1964, votes:533848, rating:8.9, rank:5}
];
webix.ui({
rows:[
{ view:"template",
type:"header", template:"My App!" },
{ view:"datatable",
autoConfig:true,
data: data}
]
});</script></body>
</html>
var data = [
{title:"My Fair Lady", year:1964, votes:533848, rating:8.9, rank:5},
{title:"My Fair Lady", year:1964, votes:533848, rating:8.9, rank:5}
];
webix.ui({
rows:[
{ view:"template",
type:"header", template:"My App!" },
{ view:"datatable",
autoConfig:true,
data: data}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment