This is a migrated thread and some comments may be shown as answers.

2016 grid popup editor for memo

3 Answers 73 Views
Grid
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 02 May 2016, 06:49 PM

Hi,

I have version Kendo UI Professional Q1 2016 and was hoping to find and example for a memo style popup editor. Could you provide link or document how to accomplish this task. I see demos for date and combo boxes but not memo fields.

TIA

John

3 Answers, 1 is accepted

Sort by
0
John
Top achievements
Rank 1
answered on 02 May 2016, 07:08 PM
p.s. using with Angular 1.X
0
John
Top achievements
Rank 1
answered on 02 May 2016, 07:14 PM

So the following seems to work.

 { field: "company_memo", title: "company_memo", width: 300,  editor: company_memoEditor  } ,
  function company_memoEditor(container, options) {
                   $('<textarea name="' + options.field + '" cols="30"  rows="4" required/>').appendTo(container);
       }

0
Dimiter Topalov
Telerik team
answered on 04 May 2016, 11:28 AM
Hi John,

That is correct, you can customize the editor templates for any field (including using Kendo UI widgets as editors) via the column.template option.

Let us know if you have other questions about Kendo UI.

Regards,
Dimiter Topalov
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Grid
Asked by
John
Top achievements
Rank 1
Answers by
John
Top achievements
Rank 1
Dimiter Topalov
Telerik team
Share this question
or