I've created a custom binding to use as a color picker.
<ul data-bind="colorPicker: selcol"></ul>
It creates 10 inline divs each representing other color. When I click a div the color is selected. I have a problem with assigning the 'selected; css class to selected div. I try to use css binding inside custom binding but this doesn't work. It only selects initial div which stays selected even after selecting other div.
Please check the example: http://jsfiddle.net/zbkkzdsp/Jbvvq/
Thanks for any help. If you have any hints or comments to my code, please let me know. I'm quite new with knockout and will take any chance to learn more.
It seems like you're doing a lot of fancy stuff with computed values in your custom binding, so I would recommend creating view models for your colors.
First define a view model for each individual color:
Then a view model for the color picker itself:
Then bind your HTML view to your picker view model:
And tie it all together:
Here's a working example: http://jsbin.com/izarik/1/edit