Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Kendo Grid Hierarchy and an entity which has one enum property and some other properties with other .net primitive types and also there is a toolbar button named AddNewRecord on grid. When the user presses the AddNewRecord button, it must add a new row to grid and shows a partial view in the grid (because it is Hierarchy Grid). When I comment the enum property in entity, everything works perfect; otherwise, the AddNewRecord button does nothing at all. Does anybody know what the problem is? Thanks in advance

.ToolBar(toolbar => toolbar.Custom().Text("AddNewRecord").Url("#").HtmlAttributes(new {@class="testClass"}))
        .ClientDetailTemplateId("EntityTemplate")
        .DataSource(dataSource => dataSource
        .Ajax()
        .Model(model => model.Id("Id"))
        .Read(read => read.Action("BaseInfoGeneralForm", "BaseInfo"))

    $(".testClass").click(function () {
        var grid = $("#Grid").data("kendoGrid");
        grid.addRow();
        $(".k-grid-edit-row").appendTo("#grid tbody");//Add New Row
        grid.expandRow(grid.tbody.find("tr.k-master-row").first());//Expand newly added row


public class FileStatus : EntityBase
{
    public FileStatus()
    {
    }

    public virtual string Title { get; set; }

    public virtual Status Ended { get; set; }
}
share|improve this question
what does the Firebug console tell you? – Daniël Tulp Jan 28 at 9:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.