jQWidgets Forums

jQuery UI Widgets Forums Grid something wrong with the vertical line in grid.

Tagged: , ,

This topic contains 2 replies, has 2 voices, and was last updated by  jose Ivan 12 years, 7 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author

  • jose Ivan
    Member

    Hi, i got a problem… something the vertical line in the grid does not show , my column can be resize.

    maybe it is the css ?


    Dimitar
    Participant

    Hello jose Ivan,

    Can you share more information – what browser are you experiencing the issue with and what version of jQWidgets do you use. Do you have the same issue with the demos on the site?

    Looking forward to your reply.

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/


    jose Ivan
    Member

    Hi thanks for reply … well i got this problem in Chrome .. i got the version 20.+++.

    I got six columns with the property columnsresize: true and each one got a width 10 , so when the datagrid it’s ready i do this.

    this.setRenderGrid = function () {
    $ = jQuery.noConflict();
    var a = $("#container").width();
    for (var b = 0; b <= this.numColumns - 1; b++) {
    var c = $(this.grid).jqxGrid("columns").records[b].datafield;
    var d = this.rendersizes[b];
    var e = d * a / 100;
    $(this.grid).jqxGrid("setcolumnproperty", c, "width", e);
    }
    $(this.grid).jqxGrid({
    width: a - 2
    })
    };

    Container it’s a div with width 98% so i resize the div. In the version 2.4.0 this works fine ! i would like to share a image but i don’t know how to attach a image.

    That’s the other part of my code…

    $(migrid.grid).jqxGrid({
    width: "100%",
    source: dataAdapter,
    editable: true,
    altrows: true,
    enablehover: true,
    enabletooltips: true,
    columnsresize: true,
    enableanimations: true,
    keyboardnavigation: true,
    autoheight: true,
    pageable: false,
    columnsresize: true,
    theme: "classic",
    editmode: "selectedcell",
    selectionmode: "singlecell",
    ready: function () {
    migrid.setRenderGrid()
    },
    columns: [{
    text: "",
    columntype: "checkbox",
    width: 10,
    datafield: "ready",
    cellbeginedit: isCellEditable
    },
    ........ others columns
    });

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.