Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
@gunzip: I see that you're trying to create a personalized hierarchy. Since, the handler value is global, any user who edits one of those values will change it for other users, no matter which view they're in. So, your views implementation wouldn't be sufficient to accomplish what I think you're trying to do.
I currently have a list of flagged nodes on the user-profile, but I only want the owner of the profile (the person that flagged the nodes) to be able to change the order of the nodes.
Because now every user can change the order of every list, even not their own and that's not what I need.
you can put two different views at the same address, one is the draggable one with access rights, the other one is plain with anonymous access. you can do this with panels as well.
Comments
Comment #1
mitchell commented@gunzip: I see that you're trying to create a personalized hierarchy. Since, the handler value is global, any user who edits one of those values will change it for other users, no matter which view they're in. So, your views implementation wouldn't be sufficient to accomplish what I think you're trying to do.
The solution to this is to use Flag Weights.
Comment #3
Donaldd commentedIs this solved and how did you do it?
I currently have a list of flagged nodes on the user-profile, but I only want the owner of the profile (the person that flagged the nodes) to be able to change the order of the nodes.
Because now every user can change the order of every list, even not their own and that's not what I need.
Any suggestions?
Thanks,
D
Comment #4
gunzip commentedyou can put two different views at the same address, one is the draggable one with access rights, the other one is plain with anonymous access. you can do this with panels as well.
Comment #5
Donaldd commentedThanks Gunzip!
I'm also using panels, but would the plain one then have the same order as the draggable one?