0

I have a jQuery Mobile web page with an Inset List that is wrapped in a HTML form. When the action is Submit, the POST parameters are validated in a corresponding file. An SQL query uses these parameters to extract data as per user's actions.

I was wondering, how I can display this query data in a tabular format which has about 8 columns.

Note: This application is actually used on desktop PCs only.

Any suggestions are welcome.

user1076517
  • 63
  • 2
  • 13

1 Answers1

1

Without knowing the target devices, orientations, or size and type of data your are trying to display I would say that you can still use HTML table tags. If you want some jQuery Mobile type styling, this other post may help.

The response on this forum post explains some great reasons why you may want to reconsider displaying the data in a columnar fashion.

Is is possible to reconsider how much data to display or using something like collapsible sets? Otherwise you probably just want to stick it in the 8 column table and expect the user to scroll horizontally and vertically.

Community
  • 1
  • 1
shanabus
  • 12,989
  • 6
  • 52
  • 78