[CLOSED] [#1371] [4.1.0] Grid - Row editor - Field-editors are not showing.

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    [CLOSED] [#1371] [4.1.0] Grid - Row editor - Field-editors are not showing.

    When double-tapping on a row the row-editor shows up, but there are no editors for the showing, so it is impossible to edit the row.

    @{ 
        var x = Html.X();
        var data = new List<object>{
            new
            {
                Name = "Lisa"
            },
    
            new
            {
                Name = "Bart"
            }
        };
    }
    
    @(
        x.Grid()
            .Plugins(x.EditableGrid())        
            .Columns(
                x.Column()
                    .DataIndex("Name")
                    .Text("Name")
                    .Width(200)
                    .Editor(x.TextField())
            )
            .Store(x.Store()
                .AutoDataBind(true)
                .Fields(
                    x.ModelField().Name("Name")
                )
                .Data( data )
            )     
    )
    Last edited by Daniil; Aug 16, 2016 at 4:13 PM.

Similar Threads

  1. Replies: 5
    Last Post: Apr 16, 2016, 6:54 PM
  2. [CLOSED] HTML editor in IE has box show in editing area
    By RRD in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 08, 2013, 5:15 AM
  3. [CLOSED] Grid editing doesn't work inside FieldSet
    By sisa in forum 2.x Legacy Premium Help
    Replies: 6
    Last Post: Jun 20, 2013, 9:09 AM
  4. Replies: 3
    Last Post: Jul 24, 2012, 8:40 PM
  5. Tree Grid - Doesn't show child nodes be default.
    By Sagar2529 in forum 1.x Help
    Replies: 3
    Last Post: Feb 25, 2011, 9:13 AM

Posting Permissions