Imagine a model as:
{
Id: { type:
"number"
},
Name: { type:
"string"
},
Nested: [
{
Id: { type:
"number"
},
Name: { type:
"string"
}
}
]
}
So, the corresponding html form reflects this model.
What I am having more trouble finding than I think I should is an example that combines the following:
- A demo / sample of the datasource implementing full CRUD operations to a remote server API manipulating a semi-complex model like the one above, preferably also integrating MVVM.
I have struggled far too much trying to work out how to combine a model, datasource, viewmodel, etc. into a cohesive whole that actually works.
Very frustrating as the value add for Kendo UI is clear - but not if it take a week to learn how to use one component of the framework.
Is there an example / demo covering this functionality that I may have missed? It seems like such a simple thing, I find it hard to believe there isn't one - but I really can't find it...
To be clear, I am NOT looking for a Grid sample, nor dropdown lists, etc. but a normal HTML form with text inputs, etc.
Richard