For a simple example, lets say this is my repeater:
<ul data-bind="foreach: items">
<li data-bind="text: property1, attr: { onclick: some_unknown_function }"></li>
</ul>
I want whoever is using this code to be able to pass in a function of their choosing, NOT in the model itself that will run onclick - is that possible? Would there be a way to assign it to the model and set it as the click binding? I can't seem to figure this out...
Figured out a pretty easy way, sometimes I forget how literal JS is...
Changed my repeater to this:
And my model to this: