JEM: 2.1.5
Joomla: 3.4.6 Template: Isis
be aware: changes will be overwritten in case of an update, but maybe it's usefull to someone.
Radio buttons
it would be good to have radio buttons with colors Red/Green.
File: .../administrator/components/com_jem/models/forms/settings.xml
You can add to the field Type "radio" the class "btn-group btn-group-yesno"
For the field gddisabled that will be something like this
<field name="gddisabled" type="radio" label="COM_JEM_GD_LIBRARY"
description="COM_JEM_GD_LIBRARY_DESC"
class="btn-group btn-group-yesno"
default="0"
required="false"
>
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
When doing so you will notice that the buttons are small and that happens as the css is messing with it, so to display it nicely you have to alter the css. Another thing is that the view is using <ul><li></li></ul> but it would be better to use divs.