Anju, Did you look at post number 3... For some reason (which will cause and issue) you are telling the widget to attempt to symbolize your point and polygon layers as POLYLINES.Also you are make mistakes like this that is telling me that you are not spending enough time proofing your xml configuration work:<value prompt="Example: 1" uniquevalsfromfield="tier" autosubmit="true" isvaluerequired="true">tier ='[value]'</value>
<value prompt="Example: <=80" uniquevalsfromfield="percent" autosubmit="true" isvaluerequired="true">operator =And percent < ='[value]'</value>
</values>
I can only guess you are trying to do this: <expression alias="Tier and enrollment" textsearchlabel="Search by Tier Enrollment:">
<values>
<value prompt="Example: 1" uniquevalsfromfield="tier" autosubmit="true" isvaluerequired="true">tier ='[value]'</value>
<value prompt="Example: less than or equal to 80" uniquevalsfromfield="percent" autosubmit="true" isvaluerequired="true" operator="AND">percent <='[value]'</value>
</values>
</expression>
Notice the operator is an attribute of the value tag not part of the inner content of the tag.