Search for nodes by selected item in a checkboxlist
How would you go about doing this? Can it be done in this sort of way?
I have a checkboxlist on a page, and want to search thru documents of it's type where a certain value has been selected on a checkboxlist. I'm running 7.4
Search for nodes by selected item in a checkboxlist
How would you go about doing this? Can it be done in this sort of way? I have a checkboxlist on a page, and want to search thru documents of it's type where a certain value has been selected on a checkboxlist. I'm running 7.4
myselection = myfoundroot.Children.Where(x => x.sectorName.selected == "mysearchcriteria").First();
is working on a reply...