JQuery jQGrid expand /collapse grid on caption layer click

前端 未结 4 1443
谎友^
谎友^ 2021-01-07 04:20

Is there any method to expand/collapse the grid by clicking on the caption layer? I have 3 very large tables that are displayed on a 1680x1050 screen which are loaded by def

4条回答
  •  南方客
    南方客 (楼主)
    2021-01-07 04:26

    You can use construct like

    $(".ui-jqgrid-titlebar-close",$("list")[0].grid.cDiv).click();
    

    You can see live demo here.

    UPDATED: Probably it will help you just to place the minimize element of from the capture bar on the left size instead of default right position? You can do this with

    .ui-jqgrid .ui-jqgrid-titlebar-close {position:relative;top:auto;margin:0;float:left}
    

    see updated demo here.

    UPDATED 2: See also one more example where click on the whole grid capture follows to the expand/collapse the grid.

提交回复
热议问题