jquery easyui DataGrid no scrollbar, DataGrid no vertical scroll bar

Source: Internet
Author: User

jquery easyui DataGrid no scrollbar, DataGrid no vertical scroll bar

==============================

Sweet Potato Yiu February 6, 2018

http://www.cnblogs.com/fanshuyao/

First, the problem description:

When the size of the data in the DataGrid Easyui is large, the body page is also set to a height beyond the hidden (such as: Overflow-y:hidden), when the DataGrid loads the entire page without a scroll bar.

Second, the solution:

Bind the Onloadsuccess event to the DataGrid, and call the DataGrid's Resize method when the load succeeds, using the following:

JS Code
    1. $ ("#datagridId"). DataGrid ({
    2. ......
    3. ......,
    4. Onloadsuccess: function (data) {
    5. $ ("#datagridId"). DataGrid ("Resize", {
    6. Height: ($ (window). Height ())
    7. });
    8. }
    9. });

What if you want to add a horizontal scroll bar?

Java code
    1. $ ("#datagridId"). DataGrid ({
    2. ......
    3. ......,
    4. Onloadsuccess:function (data) {
    5. $ ("#datagridId"). DataGrid ("Resize", {
    6. Height: ($ (window). Height ()),
    7. Width: ($ (window). Width ())//estimate is this, no test
    8. });
    9. }
    10. });

==============================

Sweet Potato Yiu February 6, 2018

http://www.cnblogs.com/fanshuyao/

jquery easyui DataGrid no scrollbar, DataGrid no vertical scroll bar

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.