[progress Communities] [progress Openedge Abl] Forum Post: Re: Colums Options Editable

  • Thread starter Thread starter egarcia
  • Start date Start date
Status
Not open for further replies.
E

egarcia

Guest
Hello Martin, Here is some additional info. The columns.editable property of Kendo UI Grid seems to have been introduced recently and it does not seem to be present in the version of Kendo UI included in Kendo UI Builder 1.1: Kendo UI v2016.1.412. (You can confirm this by running the sample from the doc in the Dojo and changing the version of the .js file.) The columns.editable property is included in the version of Kendo UI in the version Kendo UI Builder that is coming up. In the version that you have, you can disable a field by setting the editor property to just return a text instead of an input field. Example: $scope.grid0.options.columns[0] = { encoded: true, editor: function (container, options) { return container.text(options.model.CustNum); }, field: "CustNum", title: "Test" }; See the following link in the forum for a discussion related to this topic: www.telerik.com/.../how-to-make-a-non-editable-column-field Please let me know if you need additional info. Best regards.

Continue reading...
 
Status
Not open for further replies.
Back
Top