Home > Web Front-end > JS Tutorial > body text

jquery's flexigrid cannot display data tips to obtain data_jquery

WBOY
Release: 2016-05-16 17:28:28
Original
1469 people have browsed it

Upgraded IE10 and found that flexigrid cannot display data. It prompts that the data has been obtained, but no error is reported or displayed. Screenshot below.
Trace the code and find that td, tr and the data to be displayed are generated internally, but they are not displayed.
After testing and tracking, the modifications are as follows.

Modify in addData

Copy code The code is as follows:

$( t).append(tbody);
is
$(t).append('' tbody.outerHTML '
');

This way the data can be displayed normally.
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!