Disable kendo - plugin development

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 years ago
Hello

I'm writing commercial plugin for nopCommerce.
I don't want to use kendo UI. Is there a way to programmatically disable kendo so it doesn't add ui for textboxes etc.
9 years ago
It's better to use updated kendo ui ( for 3.3 or 3.4) rather then backdated TelerikMvcExtensions if you try to override something in grid in admin section. If you want to continue with TelerikMvcExtensions ( like 3.2 or previews version), you have to reference  Telerik.Web.Mvc.UI and  change view and controller action. You can also use JQuery UI instead of non of those. Just lot of customization required in admin list view and controller actions.
9 years ago
Thank  you for replay.
Yes I'm using jquery UI but when I create forms for intiger model properties kendo UI add arrows up and down.
Maybe I can add attribute so it render as standard input.
9 years ago
You can use
Html.EditorFor(x=>x.YourProperty, "specify_custom_editor_name_here")
(haven't tested in plugins but it should work)
9 years ago
Thank you for answer.
It doesn't work for me but I solved it by adding attribute for property.
 [UIHint("String")]
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.