Werner Riegler wrote: > what is wrong here ? > if (typeID '= "Alle" && typeID '= "Ohne") > should work like > if (typeID != "Alle" && typeID != "Ohne")
I don't see why they should work the same. One is COS and one is not. <http://platinum.intersys.com/csp/docbook/DocBook.UI.Page.cls?KEY=GCOS_operators#GCOS_C6067> Try if typeID '= "Alle" && (typeID '= "Ohne") or if typeID '= "Alle", typeID '= "Ohne".
