Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
Hello,
I am new to Kendo grid. I would like to add a textarea for inline editing of a grid field. Currently in edit mode there is a text box and I want to replace this with a multi line textarea. My grid is using Ajax.
thanks.
Hi I solved by:
Creating EditorTemplate TextArea.cshtml in Shared/EditorTemplates
@Html.TextAreaFor(m=>m, new { rows = 5, @style = "color:red", cols="35"})
Referenced in grid
columns.Bound(p => p.Comments).Title("Comments").Width(300).EditorTemplateName("TextArea");
Another option is to define Telerik UI for ASP.NET Core TextArea editor into the "TextArea" editor template:
@model string @(Html.Kendo().TextAreaFor(m => m) .Rows(5) .Cols(35) .HtmlAttributes(new { style = "color: red;" }) )