Using firefox 3.6.12.

My datetime widget is begin partially obsured by the input field's
autocomplete drop-down box which contains previous inputs.  Maybe the
Z-Index needs fiddling with,  or something...?

If anyone else needs a quick fix / work-around,  I have simply added
the lines hereunder nto the web2py_ajax_init() function in
web2py_ajax.html:

  try { jQuery("input.time").attr('AUTOCOMPLETE', 'OFF')
  ; } catch(e) {};
  try { jQuery("input.datetime").attr('AUTOCOMPLETE', 'OFF')
  ; } catch(e) {};
  try { jQuery("input.date").attr('AUTOCOMPLETE', 'OFF')
  ; } catch(e) {};

Maybe Massimo might prefer to have this as the definitive solution?

Regards,
-D

Reply via email to