Xymon Mailing List Archive search

New enable/disable tool ready for testing

list Kevin Hanrahan
Sat, 16 Apr 2005 18:49:18 -0400
Message-Id: <user-822e4a31963c@xymon.invalid>

Henrik,
 That change did the job. It is now working with both IE and Firefox 

Kevin

-----Original Message-----
From: Henrik Stoerner [mailto:user-ce4a2c883f75@xymon.invalid] 
Sent: Saturday, April 16, 2005 5:26 PM
To: user-ae9b8668bcde@xymon.invalid
Subject: Re: [hobbit] New enable/disable tool ready for testing
Importance: Low

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