#102423
Yavor Dashev
Participant

Hi tullio0106@live.it,

 

The functionality that you need is easily achievable with the allowEdit property of the columns.

A quick code snippet on how to disable the editing of some columns:



columns: [

{ label: 'First Name', dataField: 'firstName', allowEdit: false },
<div>
<div>{ label: 'Last Name', dataField: 'lastName', allowEdit: false },</div>
<div>{ label: 'Product', dataField: 'productName' },</div>
<div>{ label: 'Available', dataField: 'available', template: 'checkBox', editor: 'checkBox' },</div>
<div>{ label: 'Quantity', dataField: 'quantity', editor: 'numberInput' },</div>
<div>{ label: 'Unit Price', dataField: 'price', editor: 'numberInput', cellsFormat: 'c2' }</div>
<div>

            ]

Let me know if this works for you!

Please, do not hesitate to contact us if you have any additional questions.

Best regards,
Yavor Dashev
Smart UI Team
https://www.htmlelements.com/

</div>

</div>
</div>

  • This reply was modified 2 years, 9 months ago by Yavor Dashev.