Apply chosen style to group and linked monitors dropdown
This commit is contained in:
parent
735e36c2a8
commit
793e87c26d
|
@ -708,7 +708,7 @@ switch ( $tab ) {
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php echo translate('LinkedMonitors') ?></td>
|
<td><?php echo translate('LinkedMonitors') ?></td>
|
||||||
<td>
|
<td>
|
||||||
<select name="monitorIds" size="4" multiple="multiple" onchange="updateLinkedMonitors( this )">
|
<select name="monitorIds" class="chosen" multiple="multiple" onchange="updateLinkedMonitors( this )">
|
||||||
<?php
|
<?php
|
||||||
$monitors = dbFetchAll( 'select Id,Name from Monitors order by Sequence asc' );
|
$monitors = dbFetchAll( 'select Id,Name from Monitors order by Sequence asc' );
|
||||||
if ( $monitor->LinkedMonitors() )
|
if ( $monitor->LinkedMonitors() )
|
||||||
|
@ -1018,4 +1018,7 @@ if ( $monitor->Type() == 'Local' ) {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$j('.chosen').chosen();
|
||||||
|
</script>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue