Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
d655486c
Commit
d655486c
authored
Jul 27, 2002
by
gerv%gerv.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 159582 - search/knob.html.tmpl should use <label> for the radiobuttons.…
Bug 159582 - search/knob.html.tmpl should use <label> for the radiobuttons. Patch by burnus; r=gerv.
parent
908c0152
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
12 deletions
+17
-12
knob.html.tmpl
template/en/default/search/knob.html.tmpl
+17
-12
No files found.
template/en/default/search/knob.html.tmpl
View file @
d655486c
...
...
@@ -68,8 +68,9 @@
<table>
<tr>
<td>
<input type="radio" name="cmdtype" value="doit" checked="checked">
Run this search
<input type="radio"id="cmdtype-doit"
name="cmdtype" value="doit" checked="checked">
<label for="cmdtype-doit">Run this search</label>
</td>
<td> </td>
</tr>
...
...
@@ -77,34 +78,38 @@
<tr>
<td valign="top">
<input type="checkbox" name="remember" value="1"
<input type="checkbox"
id="remember"
name="remember" value="1"
onclick="remCheckboxChanged()">
and remember it
<label for="remember">and remember it</label>
</td>
<td>
<input type="radio" name="remtype" value="asnamed"
<input type="radio" id="remtype-asnamed"
name="remtype" value="asnamed"
onclick="remTypeChanged()">
with this name:
<label for="remtype-asnamed">with this name:</label>
<input type="text" name="newqueryname"><br>
<input type="checkbox" name="tofooter" value="1">
and put it in my page footer<br>
<input type="radio" name="remtype" value="asdefault"
<input type="checkbox" id="tofooter" name="tofooter" value="1">
<label for="tofooter">and put it in my page footer</label><br>
<input type="radio" id="remtype-asdefault"
name="remtype" value="asdefault"
onclick="remTypeChanged()">
as my default options for this page<br>
<label for="remtype-asdefault">
as my default options for this page
</label><br>
</td>
</tr>
<tr>
<td colspan="2">
[% IF namedqueries.size > 0 %]
<input type="radio" name="cmdtype" value="dorem">
<input type="radio"
id="cmdtype-dorem"
name="cmdtype" value="dorem">
<select name="remaction" onclick="selectDoRem()">
<option value="run">Run</option>
<option value="load">Load</option>
<option value="forget">Forget</option>
</select>
my remembered search:
<label for="cmdtype-dorem">my remembered search:</label>
<select name="namedcmd" onclick="selectDoRem()">
[% FOREACH query = namedqueries %]
<option value="[% query FILTER html %]">
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment