jQWidgets Forums

jQuery UI Widgets Forums Grid property editable

This topic contains 2 replies, has 2 voices, and was last updated by  hahakunge 7 years, 4 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • property editable #97656

    hahakunge
    Participant

    Hi,
    I tested jqxGrid with code below.
    Why I can’t edit ‘First Name’ column’s data?

    $(“#jqxgrid”).jqxGrid({
    width: 500,
    theme: ‘energyblue’,
    editable: false,
    source: adapter,
    sortable: true,
    columns: [{
    text: ‘First Name’,
    datafield: ‘firstname’,
    width: 90,
    editable:true
    }, {
    text: ‘Last Name’,
    datafield: ‘lastname’,
    width: 90
    }, {
    text: ‘Product’,
    datafield: ‘productname’,
    width: 170
    }, {
    text: ‘Order Date’,
    datafield: ‘date’,
    width: 160,
    cellsformat: ‘dd-MMMM-yyyy’
    }, {
    text: ‘Quantity’,
    datafield: ‘quantity’,
    width: 80,
    cellsalign: ‘right’
    }, {
    text: ‘Unit Price’,
    datafield: ‘price’,
    cellsalign: ‘right’,
    cellsformat: ‘c2’
    }]
    });

    property editable #97665

    Stanislav
    Participant

    Hello hahakunge,

    You need to set the editing for the grid to true. Here is an example:
    fiddle

    Best Regards,
    Stanislav

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

    property editable #97802

    hahakunge
    Participant

    Thank you for your example.
    But I think that’s not convenient.
    If I have 40 columns, and only 2 columns is editable.
    Then I have to set editable:false to other 38 columns.

    Is it possible to set grid’s editable as false,and allow column set editable as true.
    Like this
    $(“#jqxgrid”).jqxGrid({
    width: 500,
    theme: ‘energyblue’,
    editable: false,
    source: adapter,
    sortable: true,
    columns: [{
    text: ‘First Name’,
    datafield: ‘firstname’,
    width: 90,
    editable:true
    }]
    });

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

You must be logged in to reply to this topic.