|
<!doctype html> |
|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Tabulator Example</title> |
|
<link href="https://unpkg.com/[email protected]/dist/css/tabulator.min.css" rel="stylesheet"> |
|
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/js/tabulator.min.js"></script> |
|
</head> |
|
<body> |
|
<div id="example-table"></div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script> |
|
var table = new Tabulator("#example-table", { |
|
height:"311px", |
|
layout:"fitColumns", |
|
resizableColumnFit:true, |
|
columns:[ |
|
{title:"Name", field:"name", width:200, resizable:true}, |
|
{title:"Progress", field:"progress", resizable:true}, |
|
{title:"Gender", field:"gender", resizable:true}, |
|
{title:"Rating", field:"rating", resizable:true}, |
|
{title:"Favourite Color", field:"col", resizable:true}, |
|
], |
|
}); |
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
|
|
</body> |
|
</html> |