jQWidgets Forums

jQuery UI Widgets Forums Grid Inline editing, jqxNumberInput and IE7

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

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Inline editing, jqxNumberInput and IE7 #6721

    damc
    Participant

    Hello,

    In IE7 I have a problem to edit cell with jqxNumberInput. I recieve an error:
    SCRIPT5007: Unable to get value of the property ‘toString’: object is null or undefined
    jqxnumberinput.js, line 7 character 21876

    My code:
    $("#jqxgrid").jqxGrid({
    width : 540,
    source : dataAdapter,
    pageable : true,
    autoheight : true,
    editable : true,
    selectionmode : 'singlecell',
    pagesize : 5,
    pagesizeoptions : ['5', '10'],
    columns: [{
    text : 'Date to',
    datafield : 'dateTo',
    width : 110,
    columntype : 'datetimeinput'
    }, {
    text : 'Text 0',
    datafield : 'txt',
    width : 120,
    cellsalign : 'right'
    }, {
    text : 'Text 1',
    datafield : 'txt1',
    width : 140,
    cellsalign : 'right'
    }, {
    text : 'Price',
    datafield : 'Price',
    width : 170,
    cellsalign : 'right',
    cellsformat : 'd2',
    columntype : 'numberinput',
    initeditor : function (row, cellvalue, editor) {
    editor.jqxNumberInput({
    decimalDigits : 2,
    digits : 15,
    spinButtons : false
    });
    }
    }]
    });

    Thank you for help!

    Inline editing, jqxNumberInput and IE7 #6757

    Peter Stoev
    Keymaster

    Hi damc,

    Thank you for the feedback. I was able to reproduce the issue and created a new work item about it. We’ll do our best to resolved it for the next release.

    Best Wishes,
    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.