Answer the question
In order to leave comments, you need to log in
Is there a fast JS library for drawing tables for the mobile version of the site?
Are there fast datagrids for iPad safari in nature? We need basic functionality - fixed n left columns (so that they do not scroll horizontally), fixed headings, and to work quickly with 15-20 columns and about 100 lines. All serious js libraries that I found are desktop-oriented and work slowly on the iPad. This especially affects scrolling: scrolling is slow, headings lag behind content, and other unpleasant moments. Perhaps there is some kind of mobile-specific library that I missed?
Answer the question
In order to leave comments, you need to log in
you can dig into this cubiq.org/iscroll and write with blackjack and…
The recipe is simple as five kopecks
We interpose, into thead and body we interpose cells to move apart columns.
Next
table {
overflow: hidden; position: absolute;
}
thead, tbody, tfoot {
display: block;
}
Copy headings from tbody to tfoot
tfoot {
left: 0;
top: thead height
z-index: 2;
}
tbody {
width: container height - thead height;
overflow: auto;
/* For ipad3 */
-webkit-overflow-scrolling: touch !important;
/* for the rest iscroll */
}
Well, to make everything look good, it's already )))
Have you looked at these?
http://www.zurb.com/playground/playground/responsive-tables/index.html
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question