KnockoutJS is a JavaScript library used for data and event binding on web pages, using a MVVM pattern.
4
votes
0answers
60 views
UI for adding roles and modules to a user list
I have a small UI that involves adding roles and modules to a user database array. The interface works as is, no problem at all, but it seems to have a bit of 'duplicate' code that I was hoping I ...
2
votes
0answers
35 views
Assigning JSON object values to objects in a KnockoutJS setup
I am using this for in loop to loop through a JSON object and to assign the JSON object's value to my own object in a KnockoutJS setup.
The JSON object looks like ...
2
votes
0answers
113 views
Correct usage of an MVC pattern in web applictaion
I have a method in my controller (GetAllPatients/EnrollmentQueue) which does return the correct data (an array of ...
0
votes
0answers
24 views
Make knockoutjs model simpler and avoid full observable array refresh
The form creates / updates /deletes a category. The category is simple: ID and name properties in backend (Laravel) model.
UI:
Clicking on a category enables "edit mode":
I need 2 things here:
...