.NET ObjectList on BlackBerry Only Shows One Colum
Why does the .NET ObjectList control only display one column on my BlackBerry 7290? I am writing a simple BlackBerry web application using .NET 2.0 mobile web forms. The first page contains an ObjectList that is bound to a SqlDataReader that has retrieved records that contain five columns (col1, col2, ⦠col5) of data. I only want to display the first two columns on the first page so I have âTableFields="Col1;Col2"â in my OL control. I also set AutoGenerateFields to âfalseâ and Iâve defined <Field> tags for all five columns of data.
When I run the page using the BlackBerry browser, I only see the first column of data, Col1, on the first page. Interestingly, I can scroll down through each row in this first column, click on a record, and Iâll see all five columns of data on the second page of the ObjectList control.
I know the data is there because if I change the BlackBerryâs emulation mode to Microsoft IE, I can see both columns (although they arenât laid out properly). I have enabled HTML, CSS, and JavaScript in the browser. I also configured the BB to render HTML and WML. Is there something else Iâm missing? This problem is driving me crazy! Thanks.
|