I'm using the Dojo Struts2 datetimepicker, But textfield is editable with the keyboard. I want it in readonly.

I know that this question is answered on another thread, but the solution isn't compatible with ie7, wich is required for me.

The solution in the another thread is:

window.onload = function() {
   document.getElementsByName("dojo.test")[0].setAttribute("readOnly","true");
}

But, when I try that on IE7, I get a javascript error:

'document.getElementsByName(...).0' is null or not an object

I read about that, and chage it to:

'document.getElementsBy**Id**(...).0'

But I get another error: The object doesn't support that property.

Any suggestions?


I just wondering if I could change the template of the datetimepicker as I did with a simple Struts2 template... That will solve the problem

link|improve this question
Try this document.getElementById("picker1").setAttribute("readOnly","true");, <sx:datetimepicker id="picker1" /> – lschin Nov 3 '11 at 1:38
1  
Or better solution with jQuery UI Timepicker instead of deprecated Ajax Tags – lschin Nov 3 '11 at 1:43
About document.getElementById("picker1").setAttribute("readOnly","true"); was my second try. I get the error: The object doesn't support that property. I think that it because the sx tag transform into a <div> with that id, and a div doesn't support "readonly" – AciD Nov 3 '11 at 11:17
So, the solution in the another thread worked fine at other browser ( Firefox, Google Chrome, IE8, IE9) ? – lschin Nov 4 '11 at 2:14
yes, but I need to work on IE 7 :( – AciD Nov 4 '11 at 8:14
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.