jQWidgets Forums

jQuery UI Widgets Forums Grid Errors in jqxGrid component

Tagged: 

This topic contains 1 reply, has 2 voices, and was last updated by  Hristo 6 years, 4 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Errors in jqxGrid component #103775

    gskm
    Participant

    Thanks for good job. I want to offer some corrections:

    1. Error in jqxGrid component ver 7.0.0 (function clearselection)
    for (var b = 0; b < this.columns.records.length; b++) {
    fails when this.columns.records undefined.
    i use this
    for (var b = 0; b < this.columns.records ? this.columns.records.length : 0; b++) {

    2. In modal windows with jqxGrid v6+ column filter menu z-index too low (function _initmenu).
    this.gridmenu.jqxMenu({ popupZIndex: 1000,
    i use this
    this.gridmenu.jqxMenu({ popupZIndex: 1900,

    3. Loading div in jqxGrid component have style width 100px, but it too small for another language localization (function _builddataloadelement).
    i use this
    width: 110px

    Errors in jqxGrid component #103842

    Hristo
    Participant

    Hello gskm,

    Please, provide us with more details.
    There is no such default implementation – this.columns.records.
    Maybe you think about the jqxDataAdapter – it has member .records.

    It seems that you found a solution but I would like to suggest you another option which is created with this purpose.
    This is the zIndex property of the jqxWindow, also, you could use and its modalZIndex property.

    About your third point for the jqxLoader you could use the approach that creates the jqxLoader separately and when all data is loaded to hide it.
    You could find such an example in the download package in the "demos\Javascript & JQuery\jqxloader" folder with the name "javascript-loader-with-grid.htm" file.

    Best Regards,
    Hristo Hristov

    jQWidgets team
    https://www.jqwidgets.com

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

You must be logged in to reply to this topic.