Beispiel #1
0
<?php

session_start();
require_once 'model/group/group-service.php';
$group = new GroupService();
$groupList = $group->getAllRecord();
?>

<div id="panel-user" class="easyui-panel" title=" " style="padding: 5px;">
	<div id="panel-search" class="easyui-panel" title="Pencarian" data-options="collapsible: true">		
		<table align="center" width="25%">				
			<tr>
				<td align="left">User ID</td>
				<td>:</td>
				<td><input type="text" id="cari-username" name="cari-username" /></td>
				<td><button id="btn-search">Cari</button></td>
			</tr>				
		</table>
	</div>

	<table class="easyui-datagrid" title="Tabel User" id="tbl-user" data-options="singleSelect: true, collapsible: true, url: 'model/user/get-all-user-json.php', rownumbers: true, pagination: true, tools:'#tools'" style="height: 370px; padding: 10px;" iconCls="" >
		<thead>
			<tr>
				<th data-options="field: 'UserId', width: 80">User ID</th>
				<th data-options="field: 'Nama', width: 250">Nama</th>
				<th data-options="field: 'NamaGroup', width: 250">Group</th>
				<th data-options="hidden: true, field: 'Password'"></th>
			</tr>
		</thead>
	</table>	
</div>