Hi,
I have a very simple task which I think is not possible to do with umbraco but we'll see.
I have a folder (A Document Type called "container") with Tags (Document Type called "tag") inside.
I also have a multinode Treepicker and I want to display all Tags (as options to pick) based on a simple where condition. For instance "Get all Tags that have 'XYZ' in their node name" or "Get all Tags that have the checkbox XYZ checked".
What I want is to be able to have a Multinode Picker that only shows some of my tags in my list, not all of them!
I've tried to use xpath but this also didn't work. I was able to get my container ($site//container) but as soon as I tried to filter out some of my tags it didn't work anymore.
You will need to write your own property editor, if you look at my common tag picker package it should give you some pointers. Mine just used a drop-down multiselect list but should point you in the right direction, the code is on github
Umbraco Multinode Picker Conditional Nodes
Hi, I have a very simple task which I think is not possible to do with umbraco but we'll see.
I have a folder (A Document Type called "container") with Tags (Document Type called "tag") inside.
I also have a multinode Treepicker and I want to display all Tags (as options to pick) based on a simple where condition. For instance "Get all Tags that have 'XYZ' in their node name" or "Get all Tags that have the checkbox XYZ checked".
What I want is to be able to have a Multinode Picker that only shows some of my tags in my list, not all of them!
I've tried to use xpath but this also didn't work. I was able to get my container ($site//container) but as soon as I tried to filter out some of my tags it didn't work anymore.
You will need to write your own property editor, if you look at my common tag picker package it should give you some pointers. Mine just used a drop-down multiselect list but should point you in the right direction, the code is on github
is working on a reply...