I am following this link to create validations.
But i dont understand how can i use this extend method in my code.
I load data into my observable with records coming from calling breeze query.
I load data in below manner
dataObsArray= ko.observableArray()
datacontext.getData(id,dataObsArray)
.then(function () {
// some logic
})
.fail("Data not found");
Then i bind this obs array to my view as below
<tbody data-bind="with: dataObsArraay">
<tr>
<td>name</td>
<td> <input data-bind=" value: Name" ></td>
<td> <input data-bind=" value: Age" ></td>
</tr>
</tbody>
So i dont understand how can i use extend method because i am just using binding my view with properties in my observable array.
Please guide me.