M
mflanegan
Guest
Hi there, Im using a kendo ui grid with a detail template. Both grids, master and detail, are updateable. Both of them implement the same example (please see at the bottom of this post), including the same naming standards and jsdo. The only thing that changes is this: master: var jsdo = new progress.data.JSDO({ name: 'Customer' }); details: jsdo = new progress.data.JSDO({ name: 'Orders' }); I have a search control that applies the filter to the master grid. Snerario: Once the user searches for records, they will go and view the master and detail grids. Then if you go and search again, it seems that the jsdo is looking at the detail jsdo when applying the filter. I assume that its because the master and detail are using the same variable, "jsdo". I have tried changing the naming the standard from jsdo to jsdomaster and jsdodetail. This results in a whole lot of errors that I can not seem to solve. e.g: master: var jsdomaster = new progress.data.JSDO({ name: 'Customer' }); details: jsdodetail = new progress.data.JSDO({ name: 'Orders' }); Can someone steer me in the right direction.
Continue reading...
Continue reading...