I'm very new to Umbraco and working at my very first project. I ran into an issue that i hope that someone can help me solve. It's probably nothing, if you're a little more experienced.
I'm using a Checkbox list to add "categories" to cases. These are used for filtering with JS in the frontend.
Now i need to render all the options from the Checkbox list, and not just the ones selected.
It is possible, but the info is NOT cached which means you will be querying the database directly (which is very slow) so I really recommend another solution.
Render all options from Checkbox list
Hi,
I'm very new to Umbraco and working at my very first project. I ran into an issue that i hope that someone can help me solve. It's probably nothing, if you're a little more experienced.
I'm using a Checkbox list to add "categories" to cases. These are used for filtering with JS in the frontend.
Now i need to render all the options from the Checkbox list, and not just the ones selected.
Here is what i got so far:
I need to replace the
<li>
elements with content from the Checkbox list.Thx
The Checkboxlist has the alias "kategori". :)
It is possible, but the info is NOT cached which means you will be querying the database directly (which is very slow) so I really recommend another solution.
@Kenneth Jakobsen, thx for your quick reply. I will reconsider then. :)
is working on a reply...