Okay, I'm still wanting to know how to get the "onclick" event to fire for the columns in this UX LIST I am working on.
The attached sample works on Windows but it will not work on my Android Nook reader. I assume it won't work on Apple iPad either, since in my real application (which I derived this basic sample from) it does not work on iPad.
It has to be a basic requirement that a mobile app can respond to someone clicking on a particular column or not? Right?
In my app I want a popup window to give more detail about the specific row and column the user clicked on in the UX.
In the attached example, the 2nd through 4th columns are set to RawData and they emit this:
(where ? = 1,2, or 3, depending on column)
The Javascript is defined as:
I know my code for the span and js function is correct because the test link, labeled "here", in the static control above the LIST works just fine.
P.S. The dropdown control off to the side is to see if the down-arrow displays properly on ipad. Can anyone tell me if using the iOS makes the down-arrow display on the ipad for this control. I don't have my own iPad for testing yet. The other day someone tested some of my pages out on the ipad when I had the entire project set to GrBlue style and none of the down-arrows displayed on the normal dropdown controls. The magnifying glass displayed okay for Textboxes coded with a Grid Lookup.
The attached sample works on Windows but it will not work on my Android Nook reader. I assume it won't work on Apple iPad either, since in my real application (which I derived this basic sample from) it does not work on iPad.
It has to be a basic requirement that a mobile app can respond to someone clicking on a particular column or not? Right?
In my app I want a popup window to give more detail about the specific row and column the user clicked on in the UX.
In the attached example, the 2nd through 4th columns are set to RawData and they emit this:
Code:
[HTML]<span onclick="{dialog.ComponentName}_CellClicked('{Col?}');">{Col?}</span>[/HTML]
The Javascript is defined as:
Code:
function {dialog.ComponentName}_CellClicked(ID) { alert('You clicked on cell id: ' + ID ); }
P.S. The dropdown control off to the side is to see if the down-arrow displays properly on ipad. Can anyone tell me if using the iOS makes the down-arrow display on the ipad for this control. I don't have my own iPad for testing yet. The other day someone tested some of my pages out on the ipad when I had the entire project set to GrBlue style and none of the down-arrows displayed on the normal dropdown controls. The magnifying glass displayed okay for Textboxes coded with a Grid Lookup.
Comment