Form input question

Form input question

jstevensjstevens Posts: 1Questions: 0Answers: 0
edited April 2013 in Editor
I'm using an int to define CRUD permissions to an object. I want to provide an interface to manipulate those permissions. The int is a byte, 8= C, 4= R, 2 = U, 1 = D. I have datatable displaying this information using the bitwise operator. I would like to set checkboxes on the form with the fields as defined above. What can I do to set the checkbox with the appropriate setting based upon the row data? Can I somehow use the bitwise operand again?

Replies

  • allanallan Posts: 61,438Questions: 1Answers: 10,052 Site admin
    There isn't a built in option for Editor to show a bitwise combination on the radio boxes (the built in radio option just works directly on the value as a whole), but what you could do is have a plug-in field type which does exactly that. There is a tutorial for field type plug-ins available here - https://editor.datatables.net/tutorials/field_types , and you could use the built in radio type as a starting point - it would just need the value method to be updated to do a bitwise operation.

    Sounds like a very useful plug-in to have :-)

    Allan
This discussion has been closed.