-2

Below is the HTML code. I need each row for this "GRID" to be displayed as individual table rather than a single table with rows.

HTML:

                                        },
                                        {"field":
                                        "KeyValues.AmountWeight_UnitRef.Value.DisplayName", headerTemplate:GetMLString("AmountWeight_Unit"),editor:lookupEditor
                                        },
                                        {"field":
                                        "KeyValues.AmountVolume_Value.Value", headerTemplate:GetMLString("Amount^$~(volume)"),editor:NumericEditor
                                        , attributes: { "class": "TEAMSNumeric" }

                                        },
                                        {"field":
                                        "KeyValues.AmountVolume_UnitRef.Value.DisplayName", headerTemplate:GetMLString("AmountVolume_Unit"),editor:lookupEditor
                                        },
                                        {"field":
                                        "KeyValues.Comment.Value", headerTemplate:GetMLString("Comment"),editor:TextInlineEditor
                                        },
                                        {"field":
                                        "KeyValues.DocLink.Value", headerTemplate:GetMLString("Doc^$~link"),editor:TextInlineEditor
                                        },

                                    ]' data-bind="source:data.FuelConsDetails.Value, events: { change: gridClick }">                                    
                                </div></br>

Js:

1 Answers1

0

You can use row template to customise rows of the grid to look like grid. Use below url for sample.

http://demos.telerik.com/kendo-ui/grid/rowtemplate

Shivendra
  • 159
  • 1
  • 7