Updated Table to use new css layout
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<tr class="<?php echo $trc; ?>">
|
||||
<tr class="list-data">
|
||||
<?php foreach ($td as $col => $details) { ?>
|
||||
<td class="<?php echo $details['class']; ?>">
|
||||
<?php echo $details['url'] ? sprintf(HTML::anchor($details['url'].$details['value'],$details['value'])) : $details['value']; ?>
|
||||
|
@@ -1,2 +1,2 @@
|
||||
<table class="box-left" border="0" id="list-table">
|
||||
<tr class="head"><td class="head"><?php echo implode('</td><td class="head">',$th); ?></td></tr>
|
||||
<table class="list-box-left" border="0" id="list-table">
|
||||
<tr class="list-head"><th><?php echo implode('</th><th>',$th); ?></th></tr>
|
||||
|
@@ -1,4 +1,4 @@
|
||||
<tr class="<?php echo $trc; ?>">
|
||||
<tr class="list-data">
|
||||
<td><?php echo Form::checkbox('id[]',$td['id']['value']); ?></td>
|
||||
<?php foreach ($td as $col => $details) { ?>
|
||||
<td class="<?php echo $details['class']; ?>">
|
||||
|
@@ -2,7 +2,7 @@
|
||||
<div style="text-align: center;" id="select-menu">
|
||||
<br/>
|
||||
<?php echo $button; ?>
|
||||
<input type="button" name="Submit" value="Select All" class="form_button" id="all_on" />
|
||||
<input type="button" name="Submit" value="Deselect All" class="form_button" id="all_off" />
|
||||
<input type="button" name="Submit" value="Toggle Select" class="form_button" id="toggle" />
|
||||
<button type="submit" name="Submit" class="form_button" id="all_on">Select All</button>
|
||||
<button type="submit" name="Submit" class="form_button" id="all_off">Deselect All</button>
|
||||
<button type="submit" name="Submit" class="form_button" id="toggle">Toggle Select</button>
|
||||
</div>
|
||||
|
@@ -1,2 +1,2 @@
|
||||
<table class="box-full" border="0" id="select-table">
|
||||
<tr class="head"><td style="width: 25px;"> </td><td class="head"><?php echo implode('</td><td class="head">',$th); ?></td></tr>
|
||||
<table class="list-box-left" border="0" id="select-table">
|
||||
<tr class="list-head"><th> </th><th><?php echo implode('</th><th>',$th); ?></th></tr>
|
||||
|
Reference in New Issue
Block a user