blog-banner

kendoui

Here we share the experiences with the everyday technical challanges we face working on the projects.

<< Back

How to display text area editor in kendo ui grid

Piyush Bhatt 06/15/2017 10:00 AM

Kendo grid supports custom editors for in-cell editing within the grid. In enterprise applications, it would be helpful to display custom editors such as following:

  1. Kendo numeric text box for numeric columns
  2. Kendo calendar or date time picker for date and datetime type of columns
  3. Text area for a long description columns.

Here is an example of how to display text area within kendo grid.

 function textAreaEditor(container, options) {
$('<textarea class="k-textbox" name="' + options.field + '" style="width:100%;height:100%;" />').appendTo(container);
}

 //use above function in grid configuration
columns: [
{ field: "description", width: "300px", editor: textAreaEditor }
]

Here is example to show numeric text box:

editor: function(container, options) {
// create an input element
var input = $("<input/>");
// set its name to the field to which the column is bound ('name' in this case)
input.attr("name", options.field);

kendo-hack-6.png

To visit more of such tips and tricks go to - Kendo UI Grid Tips and Tricks

AI Software provides custom software development services to small to Fortune 500 clients in US. Telerik Kendo UI is a great tool for modern enterprise web application development. We have a pool of .Net professionals with skills in Kendo UI and similar other toolset. We provide training to software development teams so they can quickly become productive with Kendo UI tools and modern web development best practices. 

Contact Us  to learn more about us or setup a training for Kendo UI and other Telerik products.

  • AI Software FaceBook Page
  • AI Software Twitter Page

Recent Posts

Archives