Questions tagged [editablegrid]

EditableGrid is an open source Javascript library to manage grid component

The official site is http://www.editablegrid.net/en/

The source are available from gihub editablegrid

44 questions
0
votes
1 answer

Kendo Grid, datatable bind: System.ArgumentException: Property with specified name: ID cannot be found on type: System.Data.DataRowView

To my view I send Model where one property is DataTable(called Data), which I bind to Kendo Grid: @(Html.Kendo().Grid(Model.Data) .Name("MyGrid") .Columns(c => { if (Model.Data != null) { int index = 0; …
Kula
  • 25
  • 6
0
votes
1 answer

EditableGrid loadXML

I am using EditableGrid's loadXML(URL) or loadJSON(URL) to fetch data from oracle. I've realized that EditableGrid will generate a GET request with a token ID added to the end of my URL . So the request url became url&1478799713810 And my server…
0
votes
1 answer

How to set the decimal places of a number in Kendo UI model defenition?

I'm using a kendo ui editable grid with NumericTextBox. Usually in NumericTextBox the decimal places are limited to two i.e, if I enter 10.135 the value will be formatted to 10.14. But what I need is to get 10.135 itself. What is to be done here. My…
Nitheesh
  • 19,238
  • 3
  • 22
  • 49
0
votes
1 answer

Angular JS add new row be in editable mode as default

I am creating a grid using the ng-repeat directive, but by clicking on new row , the new row is not in editable mode as a default and user has to click on edit button. how can I make a new row in editable mode ?