Hey guys, I was wondering if it was possible to get whether a category property is checked (true/false) in uCommerce (using V2)
The code as follows simply brings back true that the Category has that name, which is fine, but I want to find out whether the checkbox with that name is checked or not?
var myCategory = Category.All().Single(x => x.CategoryId == 147);
uCommerce Get Category definition boolean
Hey guys, I was wondering if it was possible to get whether a category property is checked (true/false) in uCommerce (using V2)
The code as follows simply brings back true that the Category has that name, which is fine, but I want to find out whether the checkbox with that name is checked or not?
Basically from the code above I want to find out if x.Name == "DisplayOnNav" is checked!
Anyone who comes across this, i finally found a way to do it by getting the definitionfield id
is working on a reply...