I've used xeditable in multiple places in my application and everything works just fine although in one particular place, nothing happens when i click on the tick box:
(ideally its about to trigger the onaftersave function here)
<span editable-text="label.yellowColor" e-rows="1" e-cols="5" onaftersave="updateLabelName($data)" ng-click="$event.stopPropagation()">{{label.yellowColor || '...'}}</span>
It would be great to get input on the above.
Why don't you bind the text to a variable in the scope with
ng-model
? This way you could display it everywhere AND access it all the more throughout your program.