I am trying to get an example of Knockout working in JsFiddle.
This all works on the Knockout website and this code is taken directly from there.
Everything works as expected in JSFiddle too except the REMOVE function.
Does anyone know why?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yeah, you need to tell KnockoutJS that you want to pass current data to
removeSeat. Do this with JavaScript’sbindfunction like this:The first parameter of
bindis a context, i.e. what will be accessed viathisinside the function. Other parameters are normally passed to function. Read more about this in the documentation.