Hi.
I have two dropdownlists where values of second depend on values of first.
First is something like that:
and second is the similiar.
For now to change the value in second dropdownbox I use change method:
So, I would like to avoid lines 4-5 and bind to mpr.SomeValue declaratively.
And yes, it is not about cascding.
Is it possible?
Thanks in advance.
I have two dropdownlists where values of second depend on values of first.
First is something like that:
<select id="Id1" kendo-drop-down-list k-change="change" k-data-bound="prjDataBound" k-data-text-field="'Value'" k-data-value-field="'id'" k-data-source="somesource" > /select>and second is the similiar.
For now to change the value in second dropdownbox I use change method:
1.$scope.change = function (e)2.{3. $scope.mpr = this.dataItem();4. var cfLevel = $("#cfLevelId").data("kendoDropDownList");5. cfLevel.value($scope.mpr.SomeValue);6. $scope.$apply();7.};So, I would like to avoid lines 4-5 and bind to mpr.SomeValue declaratively.
And yes, it is not about cascding.
Is it possible?
Thanks in advance.