Hello!
I have 2 grid!
First grid has field: Volume with Uihint ["Decimal"]
Second grid has field: Volume Uihint ["Decimal"]
I have this:
my view:
If I use bind Combobox or KendoNumbericTextbox for my field: Volume(in first grid and secondgrid)
And simultaneously edit the element in the first and second grid
I see this: 1.png
I believe that this is because jQuery will return the first element in the DOM and initialize NumericTextBox from it.
how can I get around this problem by using Kendo?
I don't want create another field for any coincidence, because I have 10+ coincidences
Please help!
I have 2 grid!
First grid has field: Volume with Uihint ["Decimal"]
Second grid has field: Volume Uihint ["Decimal"]
I have this:
my view:
// something @(Html.Kendo().Grid<type1>() .Name("typ1") .ToolBar(toolBar => toolBar.Create()) .Columns(columns => { // other columns.Bound(o => o.Volume); // other }// other)<br/ >// something @(Html.Kendo().Grid<type2>() .Name("typ2") .ToolBar(toolBar => toolBar.Create()) .Columns(columns => { // other columns.Bound(o => o.Volume); // other }// other)And simultaneously edit the element in the first and second grid
I see this: 1.png
I believe that this is because jQuery will return the first element in the DOM and initialize NumericTextBox from it.
how can I get around this problem by using Kendo?
I don't want create another field for any coincidence, because I have 10+ coincidences
Please help!