add tooltip to show why host groups radio is disabled
This commit is contained in:
@@ -445,6 +445,15 @@ td > form.nd_inline-form {
|
|||||||
margin-left: 7px;
|
margin-left: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* to allow display of tooltip on a disabled control
|
||||||
|
http://jsfiddle.net/cSSUA/209/ */
|
||||||
|
.tooltip-wrapper {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.tooltip-wrapper .input[disabled] {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
/* vlan entry box for netmap */
|
/* vlan entry box for netmap */
|
||||||
#nd_vlan-label {
|
#nd_vlan-label {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
|||||||
@@ -60,7 +60,12 @@
|
|||||||
<label for="nd_mapshow-neighbors">Neighbors Only</label>
|
<label for="nd_mapshow-neighbors">Neighbors Only</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
[% IF devgrp_list.size %]
|
||||||
<div class="radio radio-success">
|
<div class="radio radio-success">
|
||||||
|
[% ELSE %]
|
||||||
|
<div class="radio radio-success tooltip-wrapper"
|
||||||
|
rel="tooltip" data-placement="left" data-offset="5" data-title="No Named Groups Defined">
|
||||||
|
[% END %]
|
||||||
<input type="radio" name="mapshow" id="nd_mapshow-only"
|
<input type="radio" name="mapshow" id="nd_mapshow-only"
|
||||||
[% 'checked' IF vars.sidebar_defaults.device_netmap.mapshow == 'only' %]
|
[% 'checked' IF vars.sidebar_defaults.device_netmap.mapshow == 'only' %]
|
||||||
[% 'disabled' IF NOT devgrp_list.size %] value="only">
|
[% 'disabled' IF NOT devgrp_list.size %] value="only">
|
||||||
|
|||||||
Reference in New Issue
Block a user