jQWidgets Forums

jQuery UI Widgets Forums Getting Started Scrollbar covering My last Row in JQxGrid

Tagged: 

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 11 years, 8 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Scrollbar covering My last Row in JQxGrid #29685

    Akshar AK
    Participant

    Hello,

    Am using a JQxGrid and the grid is as below.

    gridColumns.push({ text: colNamesArray[i], dataField:colStr , align :

    ‘center’ , cellsalign:‘center’, width: 75, filterable: false , cellsformat: ‘F2’,

         validation:

    function (cell, value) {

    if(isNaN(value)){

    return {result:false,message:“Enter only number”};

        }

    if((pdxType != ‘PD3’ || pdxType != ‘PD4’ || pdxType != ‘PD4_Z’)){

    if ((value < 0 || value > 100) && (planningType == ‘HeadCount’)) {

    return { result: false, message: “Value should be in the 0-100 interval};

                                 }

    if(planningType == ‘Hours’){

    var column = cell.column;

    var r = column.slice(8,column.length);

    var maxValue = parseFloat(monthlyHrsArray[r1]) * 100;

    if (value > maxValue) {

    return { result: false, message: “Value should be less then “+maxValue};

               };

    }

             }

    else {

    if ((value <100 || value > 100) && (planningType == ‘HeadCount’)) {

    return { result: false, message: “Value should be in the -100 to 100 interval};

                                 }

    if(planningType == ‘Hours’ ){

    var column = cell.column;

    var r = column.slice(8,column.length);

    var maxValue = parseFloat(monthlyHrsArray[r1]) * 100;

    if (value > maxValue) {

    return { result: false, message: “Value should be less then “+maxValue};

               };

    }

             }

    return true;

    }

         });

    When i generate it in the jsp last row is hidden by the scroll bar… Is there any property that says the scroll bar not to hide the last Row??

    Scrollbar covering My last Row in JQxGrid #29689

    Peter Stoev
    Keymaster

    Hi Akshar AK,

    Unfortunately, the provided information is not enough and we cannot help you. Please, provide a full sample which we will be able to run and which demonstrates an issue with the latest version of jQWidgets.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

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

You must be logged in to reply to this topic.