Reputation: 3626
I am using jQuery editable datatable. I want some of the fields in the table should be non-editable. So I am using class name readOnly
and define is as follows in CSS:
.readOnly {
readonly: true;
}
But the data field not turned to readonly
: data in that column is editable .
How should I overcome this?
Upvotes: 1
Views: 2468