DataView in Mobile Browser

Should the DataView control work properly on a mobile browser, like Safari on the iPhone or Android’s stock browser? I ask because it doesn’t seem to. I’m loading data from a PHP script output as XML. Works great in IE and Firefox, just not a mobile browser. Javascript support is enabled. I’m trying to come up with a clever way to provide some powerful client side features, like ajax, grid filtering, and in this case a sort of grid layout with HTML elements that work on mobile devices without having to use SDKs specific to each device OS. If this set of tools isn’t suitable, is there one that fits better?

There are some problems with xml loading on android devices ( we will investigate it, other data types works correctly ), as for iPhone - all works correctly during local tests

The main problem of using dataview and other components on mobile devices - mobile devices doesn’t render scrolls in the html, so you need to use all component in auto-width | auto-height modes to prevent inner scrolls.

There are some problems with xml loading on android devices ( we will investigate it, other data types works correctly ), as for iPhone - all works correctly during local tests

The main problem of using dataview and other components on mobile devices - mobile devices doesn’t render scrolls in the html, so you need to use all component in auto-width | auto-height modes to prevent inner scrolls.

Yeah, I had my iPad at home and it does work better, although just as you said, the scroll bars didn’t work. That’s progress anyway. I’ll keep working with it.