16 Apr
2005
16 Apr
'05
9:26 p.m.
On Sat, Apr 16, 2005 at 05:05:53PM -0400, kevin hanrahan wrote:
(267) </tr> <tr> <td align=center> <input name=apply type="button" onClick="validateDisable(this.form)" value="Apply"></td> </tr>
If you could send me the full HTML document, I'd be interested to see if it is equally broken when I view it. This smells of a browser issue
- which IE version are you using ?
Just as an experiment, could you try changing line 348 of hobbitd/hobbitsvc-info.c ? It currently is
addtobuffer(buf, buflen, " <tr> <td align=center> <input name=apply type=\"button\" onClick=\"validateDisable(this.form)\" value=\"Apply\"></td> </tr>\n");
Try changing it to
addtobuffer(buf, buflen, " <tr> <td align=center> <input name=apply type=\"submit\" value=\"Apply\"></td> </tr>\n");
i.e. change the type from "button" to "submit", and remove the "onClick" stuff.
If that makes it work, then it's the Javascript form validation that is broken - maint.pl has a config item to disable that, so maybe I should just mimic this.
Regards, Henrik