Does anyone have a suggestion for how to implement a tooltip/rollover
capability when using custom forms like below:
<table>
<tr>
<td>Meeting Name:</td>
{{form.element('input',_name='name')['_size']=50}}
<td>{{=form.custom.widget.name}}</td>
</tr>
<tr>
<td>Password:</td>
<td>{{=form.custom.widget.password}}</td>
<td>{{=form.custom.label['password']}}</td>
</tr>
<tr>
<td>Status:</td>
<td>{{=form.custom.widget.status}}</td>
<td>{{=form.custom.label['status']}}</td>
</tr>
Ideally I would like to use the comment attribute specified in the
table definition as the test to display. I did see a couple of
examples but they seemed to work with non-custom forms and I could not
figure out how to invoke the tooltip/mouseover.