D
Duncan
Hi all,
I'm tearing my hair out on this!
I have a simple ASP.NET 2 page with a TextBox control, in the
PreRender I set ClientSide events:-
Response.Attributes.Add("onchange",
"javascript:alert('Changed');");
Response.Attributes.Add("onfocus",
"javascript:alert('Has Focus');");
Response.Attributes.Add("onblur",
"javascript:alert('Lost Focus');");
In the destop browser everything is fine, all events fire as expected.
When I open the same page from a PDA running Mobile IE 5, only the
onfocus and onchange events fire, onblur never does.
The Internet Explorer Mobile Reference page tells me that these, and
only these events can be caught in the mobile browser but I can't make
it work.
Can anyone save my sanity!
Cheers,
Duncan
I'm tearing my hair out on this!
I have a simple ASP.NET 2 page with a TextBox control, in the
PreRender I set ClientSide events:-
Response.Attributes.Add("onchange",
"javascript:alert('Changed');");
Response.Attributes.Add("onfocus",
"javascript:alert('Has Focus');");
Response.Attributes.Add("onblur",
"javascript:alert('Lost Focus');");
In the destop browser everything is fine, all events fire as expected.
When I open the same page from a PDA running Mobile IE 5, only the
onfocus and onchange events fire, onblur never does.
The Internet Explorer Mobile Reference page tells me that these, and
only these events can be caught in the mobile browser but I can't make
it work.
Can anyone save my sanity!
Cheers,
Duncan