burek
1st October 2010, 14:00
Hi,
First of all, let me say this is one great admin tool!
Also, I would like to suggest you to change the way you display checkboxes in your control panel pages. So far (ISPConfig 3) displays checkboxes simply with:
<input name="blah" ... type="checkbox" /> some text here
which is ok, but it is sometimes very hard to point your mouse exactly on the checkbox, to be able to click it (when in a hury, doing a lot of repeatings, editing clients, etc.). So what I'm suggesting here is to put this instead:
<input name="blah" id="blah" ... type="checkbox" /> <label for="blah">some text here</label>
That way your checkboxes will be clickable if the user clicks the text, right next to the checkbox, too. I believe this would make things a little bit easier.
Cheers :)
First of all, let me say this is one great admin tool!
Also, I would like to suggest you to change the way you display checkboxes in your control panel pages. So far (ISPConfig 3) displays checkboxes simply with:
<input name="blah" ... type="checkbox" /> some text here
which is ok, but it is sometimes very hard to point your mouse exactly on the checkbox, to be able to click it (when in a hury, doing a lot of repeatings, editing clients, etc.). So what I'm suggesting here is to put this instead:
<input name="blah" id="blah" ... type="checkbox" /> <label for="blah">some text here</label>
That way your checkboxes will be clickable if the user clicks the text, right next to the checkbox, too. I believe this would make things a little bit easier.
Cheers :)