Previously when I wanted a column to be read only I set the column property, readOnly: true
After installing 2016.2 columns set with this property are no longer read only.
For an example see: http://jsfiddle.net/ode06pw2/3/
The "Product Name" column is set to read only, when you double click on a row the corresponding cell is not read only.
After some digging I found a solution that may help others.
In 2016.2 to make a column read only, you specify this in the columnSettings in the name="Updating" section of the configuration, for example:
{name: "Updating",columnSettings: [ {
columnKey: "Name", readOnly: true }]}
for an example see: http://www.igniteui.com/help/iggrid-columns-and-layout#defining-columns
Hello Graham,
Thank you for posting in our community.
In order to set a column to be read only the readOnly option in the Updating columnSettings collection can be set. For example:
//Initialize $("#grid").igGrid({ features: [ { name: "Updating", columnSettings: [ { columnKey : "Name", readOnly: true } ] } ] });
//Initialize
$(
"#grid"
).igGrid({
features: [
{
name:
"Updating"
,
columnSettings: [
columnKey :
"Name"
readOnly:
true
}
]
});
Please feel free to contact me if you need any further assistance with this matter.