-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the configuration of filterable: { mode: "row" }
binding is unable to process.
#225
Comments
Can you setup a jsfiddle or equivalent so we can see your structure? |
Here's an example of the same error, but in this example the data is showing up in the grid and the filtering seems to work stil... My code is a bit different and the data configuration looks like this:
I also don't normally insert/update items in the data observable array (most of it comes from the server). @bmsmg Sorry for taking so long (I was using the menu config, but now need to use the row option). |
Well, so we have an error. Is there any fix/workaround? It is still unhandled exception and in complex scenario it breaks flow. |
I'm not sure what the problem is, but I noticed that it has something to do with the filter row and the |
Seems that there is some problem with internal viewmodel and binding in FilterCell widget.
It creates a new 'value' binding, but Knockout tries to bind it to other viewmodel and there is no 'value'. Binding is created on filter input on the top of grid - filtering row. So maybe problem is in scope in Kendo widget or in kendo-knockout widget? |
I believe this is truly a knockout-kendo bug. The kendo code uses data-bind syntax throughout some of their widgets, but knockout is tripping up on the filter data-binds. |
So maybe some way how to disable descendant binding for grid with filter or anything? |
Encountered the same issue. Any possible workaround for this? |
I did it this way: Created global binding
Then modified kendo-knockout.js
I don't like this way, because I had to hardcode grin widget name there, but I have no time to made it better way. This one works for now and that's it. |
I'm receiving an error that says the following:
Uncaught ReferenceError: Unable to process binding "value: function (){return value }" Message: value is not defined
I've followed this down to the filterable row dom element has a data-bind attribute with value: value and knockout doesn't know what to do with it since value is undefined.
Is this configuration not supported?
The text was updated successfully, but these errors were encountered: