[progress Communities] [progress Openedge Abl] Forum Post: Re: Grid Refreshing After Cancel...

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

egarcia

Guest
Hello Louis, A possible way to do what you are looking for is to use a Row Template. You can use specify a Row Template in a custom section file and refer to its ID or specify a RowTemplate function via the view factory file. Please notice that if you want the buttons to display, you would have to explicitly list them in the Row Template code. Here is an example of a RowTemplate function: rowTemplate: function (dataItem) { var template = kendo.template( // ' ' + ' #= EmpNum # ' + ' #= LastName # ' + ' #= FirstName # ' + ' #= Address # ' + ' #= HomePhone # ' + ' #= State # ' + ' ' + kendo.toString(dataItem.Birthdate, "MM-dd-yyyy") + ' ' + ' Edit ' + ' Delete ' + ' ' ); return template(dataItem); } I hope this helps, Edsel

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