<skuidpage unsavedchangeswarning="yes" personalizationmode="server" useviewportmeta="true" showsidebar="true" showheader="true" tabtooverride="Account">
<models> <model id="Account" limit="100" query="true" createrowifnonefound="false" datasource="salesforce" sobject="Account"> <fields> <field id="Name"/> <field id="Industry"/> </fields> <conditions> <condition type="fieldvalue" value="Financial" enclosevalueinquotes="true" field="Industry" state="filterableoff" inactive="true" name="IsFinancial"/> <condition type="fieldvalue" value="Financial" enclosevalueinquotes="true" field="Industry" operator="!=" state="filterableoff" inactive="true" name="NotFinancial"/> </conditions> <actions/> </model> </models> <components> <pagetitle model="Account" uniqueid="sk-Y-I-200"> <maintitle> <template>{{Model.labelPlural}}</template> </maintitle> <subtitle> <template>Home</template> </subtitle> <actions> <action type="savecancel" uniqueid="sk-Y-I-198"/> </actions> </pagetitle> <skootable showconditions="true" showsavecancel="false" searchmethod="server" searchbox="true" showexportbuttons="false" pagesize="10" createrecords="true" model="Account" mode="read" allowcolumnreordering="true" uniqueid="sk-Y-I-214"> <fields> <field id="Name" hideable="true" allowordering="true" uniqueid="fi-Y-H-983"/> <field id="Industry" hideable="true" uniqueid="fi-Y-g-270"/> </fields> <rowactions> <action type="edit"/> <action type="delete"/> </rowactions> <massactions usefirstitemasdefault="true"> <action type="massupdate"/> <action type="massdelete"/> </massactions> <views> <view type="standard"/> </views> <filters> <filter type="toggle" createfilteroffoption="true" affectcookies="false" autocompthreshold="25" conditionsource="manual" labelmode="auto" filtermethod="server" label="Financial Industry"> <effects> <effect action="activate" value="" condition="IsFinancial"/> <effect action="deactivate" value="" condition="NotFinancial"/> </effects> </filter> <filter type="toggle" createfilteroffoption="true" affectcookies="true" autocompthreshold="25" conditionsource="manual" labelmode="auto" filtermethod="server" label="Not Finance Industry"> <effects> <effect action="activate" value="" condition="NotFinancial"/> <effect action="deactivate" value="" condition="IsFinancial"/> </effects> </filter> </filters> </skootable> </components> <resources> <labels/> <css/> <javascript/> <actionsequences uniqueid="sk-Y-g-259"/> </resources> <styles> <styleitem type="background" bgtype="none"/> </styles> </skuidpage> ```
I thought it was contradictory what you’re trying to do (like why are you using 2 conditions to do 1 thing), then I realized that it actually makes sense. When you toggle off IsFinancial or IsNotFinancial, you’re resetting the filter, in a sense (in the scenario where there are only 2 filters).
So 3 scenarios:
- Show records that industry is Financial
- Show records that industry is NOT Financial
- Show all records (when it comes to industry), aka don’t filter or industry
<filter type=“toggle” ...> //when toggling off, this condition below deactivates //when toggling off, this condition below activates
Yup. I know about using model actions. It’s what I’m using as a work around.
I’d consider this a bug and not a feature.
I had a discussion with Rob Hatch and learned that this might be intended behavior and not a bug.
The behavior is that when you have, for example, 3 conditions: A, B, and C and you have a Toggle filter that has the effects below when toggling ON:
1. Deactivate A
2. Deactivate B
3. Activate C
When the toggle is OFF, the filter ignores if A and B were initially deactivated (like in your case) and will reverse the above effects like so:
1. Activate A
2. Activate B
3. Deactivate C
So Toggle Filter only knows 2 points: Point 1 and Point 2, and all it does is go from one to the other and then back. What you need it to do is point 3, where ALL the filters are reset. So the workaround with model actions like you did, or potentially using Select Filter to set value of a condition instead of using truthy/falsy conditions (maybe?)
(side note: I learned so much about Toggle filter from this exploration, and I’m still not sure if I’m a huge fan of this filter option, but maybe it’s super helpful in other use cases shrug)
Not “might be” – It is intended behavior…
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.