I am currently working on a large application in Backbone. I am posed with the challenge of implementing field level permissions on the form.
One way is to trick the text API of require.js and have it fetch views/partials from the MVC controller and implement permissions on the server side. This way I will get the required HTML (as that will be compiled code returned from the server) that I can render.
Is there any better way to do it in Backbone?