jQWidgets Forums

jQuery UI Widgets Forums Grid jqxGrid auto column width with jqWidgets 3.0.3

This topic contains 8 replies, has 4 voices, and was last updated by  ae50042 8 years, 6 months ago.

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

  • harsh
    Participant

    Hi,

    I have replaced jqWidgets 3.0.3 with older one in our application. While doing unit testing found below problems,

    1. Style is not available in this version.
      .jqx-grid-cleared-cell {
      visibility: hidden;
      }
    2. In jqxGrid we have given grid width to ‘100%’. Here columns are not auto fitting with screen.

    var grid = this.gridParentElement.jqxGrid({
    source : sourceData,
    width: ‘100%’,
    height : ‘100%’,….

    Also I have tried with width:’auto’ property of column.

     

    Note: The same code is working fine with older version i.e. 2.8.

    Thanks in advance,

     

    Regards,
    Harsh

     


    Peter Stoev
    Keymaster

    Hi Harsh,

    We never supported width: ‘auto’ setting. The .jqx-grid-cleared-cell style is applied only when it is necessary and is applied correctly in ver. 3.0.3.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com


    harsh
    Participant

    Hi Peter,

    1. visibility:’hidden’ property of ‘.jqx-grid-cleared-cell’ is available in lower version of jqx.base.css but not in 3.0.3.
    2. Columns are not fitting in grid area even if we keep width:” property of column.

    Regards,
    Harsh


    Peter Stoev
    Keymaster

    Hi Harsh,

    – Most probably that setting is removed because it is not necessary.
    – width is expected to be set to a number or percentage. Other settings are not supported.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com


    harsh
    Participant

    Hi Peter,

    If I have 3 columns and I have added width “25%” to first two columns and third will be default i.e. I haven’t added width property to it.
    Then in this case what would be the width for last column?

    Regards,
    Harsh


    Peter Stoev
    Keymaster

    Hi Harsh,

    Please, try that sample:

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <title id='Description'>This example shows how to create a Grid from Array data.</title>
    <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
    <script type="text/javascript" src="../../scripts/jquery-1.10.2.min.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxdata.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxmenu.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxgrid.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxgrid.selection.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxgrid.columnsresize.js"></script>
    <script type="text/javascript" src="../../scripts/demos.js"></script>
    <script type="text/javascript">
    $(document).ready(function () {
    // prepare the data
    var data = new Array();
    var firstNames =
    [
    "Andrew", "Nancy", "Shelley", "Regina", "Yoshi", "Antoni", "Mayumi", "Ian", "Peter", "Lars", "Petra", "Martin", "Sven", "Elio", "Beate", "Cheryl", "Michael", "Guylene"
    ];
    var lastNames =
    [
    "Fuller", "Davolio", "Burke", "Murphy", "Nagase", "Saavedra", "Ohno", "Devling", "Wilson", "Peterson", "Winkler", "Bein", "Petersen", "Rossi", "Vileid", "Saylor", "Bjorn", "Nodier"
    ];
    var productNames =
    [
    "Black Tea", "Green Tea", "Caffe Espresso", "Doubleshot Espresso", "Caffe Latte", "White Chocolate Mocha", "Cramel Latte", "Caffe Americano", "Cappuccino", "Espresso Truffle", "Espresso con Panna", "Peppermint Mocha Twist"
    ];
    var priceValues =
    [
    "2.25", "1.5", "3.0", "3.3", "4.5", "3.6", "3.8", "2.5", "5.0", "1.75", "3.25", "4.0"
    ];
    for (var i = 0; i < 200; i++) {
    var row = {};
    var productindex = Math.floor(Math.random() * productNames.length);
    var price = parseFloat(priceValues[productindex]);
    var quantity = 1 + Math.round(Math.random() * 10);
    row["firstname"] = firstNames[Math.floor(Math.random() * firstNames.length)];
    row["lastname"] = lastNames[Math.floor(Math.random() * lastNames.length)];
    row["productname"] = productNames[productindex];
    row["price"] = price;
    row["quantity"] = quantity;
    row["total"] = price * quantity;
    data[i] = row;
    }
    var source =
    {
    localdata: data,
    datatype: "array",
    datafields:
    [
    { name: 'firstname', type: 'string' },
    { name: 'lastname', type: 'string' },
    { name: 'productname', type: 'string' },
    { name: 'quantity', type: 'number' },
    { name: 'price', type: 'number' },
    { name: 'total', type: 'number' }
    ]
    };
    var dataAdapter = new $.jqx.dataAdapter(source);
    $("#jqxgrid").jqxGrid(
    {
    width: 670,
    source: dataAdapter,
    columnsresize: true,
    columns: [
    { text: 'Name', dataField: 'firstname', width: '25%' },
    { text: 'Last Name', dataField: 'lastname', width: '25%' },
    { text: 'Total', dataField: 'total', cellsalign: 'right', cellsformat: 'c2' }
    ]
    });
    });
    </script>
    </head>
    <body class='default'>
    <div id='jqxWidget'>
    <div id="jqxgrid">
    </div>
    </div>
    </body>
    </html>

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com


    panky
    Participant

    Hi Peter,

    If I keep width: ‘100%’, instead of width: 670, then I have to mention width of each column in %, otherwise

    it shows blank column at the end.

    I m using v 3.0.4.

    Thanks
    Panky


    Peter Stoev
    Keymaster

    Hi Panky,

    If you want your last column to fill the remaining space, do not set its “width”.

    Best Regards,
    Peter Stoev

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


    ae50042
    Participant

    Hi ok, if I don’t put width at the last columns, the grid is not layout responsive:
    When I make the browser window smaller, I will able to see just few px of the last column also if I try to scroll horizontal.

    Ho can I fix that?

    Best Regards,
    Giorgio.

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

You must be logged in to reply to this topic.