I am trying to do the following:
rendered=\"#{billBean.company.equals(\"something\")}\"
But the problem is I cannot write \"something\"
\"something\"
Use single quote (') to refer to a plain String inside EL:
String
rendered="#{billBean.company.equals('something')}"