knockout.js - Resetting dropdown by manual subscription doesn't work depending on what observable was subscribed to -
I searched online and tried to understand this behavior and work hard but I just could not find out that this behavior Why is it possible that I am missing something fundamental here?
I would appreciate some hints / resources / answers.
Consider this Bela -
Why it Resets Product Selection
// Whenever the category changes, the product selection Reset self.category.subscribe (function () {self.productName (undefined);});
While this is not it?
// Whenever the category changes, reset product selections self.categoryName.subscribe (function () {self.productName (undefined);});
It must be done from the order in which the subscribe
event The other is called relative to the computed
properties computed
and subscribe
properties of D are said in the same order when they were viewed There is a change on the property. Here's what is happening in each case, this is the best thing, as I can tell (Kendo has not read the source, so there is some guess):
category.subscribe:
Code due to change in category
Note: productName
is still the old value at this point
category. ProductName
Change the calculation value of
the property calculated due to the change in product
the event is converted Product Name
Note: productName
is undefined
now
c productName
and the product
list undefined
>
catego RyName.subscribe:
- The category dropdown is manipulated by the user, the new value is set
-
category
category
Note: Due to the change in
productName
the product
still has the old value at this point-
Complete all dependent-computed properties and membership events
Nocategory
Has been updated, so updated on the basis ofkendoDropDownList
newproducts
list and the current ( ofproductName
undefined
) valueI tested the
candodeupdownlist Ode> and it chooses the first option even if you have
productName
Dummy string such as'asdf'
is set to. It shows only empty if the value is empty string (''
) orundefined
.productName
-
class
does not update it again because itProducts are not dependent on
orproductName
, but should updateCandodeupdualist
optionLabel
inkendoDropDownList
, then it will work as expected, even then.
categoryName
< category name
view is updated due to change in / code>
Note: productName
is Undefined
now
If you enter categoryName.subscribe
before, category = ko.computed (...)
First, then the whole cycle begins before productName
to undefined
which will be a way to fix it. Here is a Bella:
Another way is to describe the optionLabel
parameter as KandodaproductionList
option hash as described in step 8. >
Comments
Post a Comment