D
D
denz2012-09-28 10:13:49
JavaScript
denz, 2012-09-28 10:13:49

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

4 answer(s)
I
Ilya Shabanov, 2012-09-29
@ishaba

you can dig into this cubiq.org/iscroll and write with blackjack and…

A
AHDPEu, 2012-10-01
@AHDPEu

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 )))

V
Vladimir Rybas, 2012-09-28
@vrybas

ok

V
Victor Victor, 2012-09-28
@toptalo

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 question

Ask a Question

731 491 924 answers to any question