cancel
Showing results for 
Search instead for 
Did you mean: 

Remove / Hide Single Field in Tile List View

Former Member
0 Kudos

Hi All,

I am working in Agentry CRM Service Manager 4.2. I have a screen with a list of field coming as Tile List View from Item Object. I want to remove / hide a field called "Kilometre". I dont want that field to be visible in that screen inside Tile List view. What shall i write a rule to remove a single field from that whole list.

Please help.

Thanks,

Divya

Accepted Solutions (1)

Accepted Solutions (1)

former_member208808
Active Participant
0 Kudos

Hi,

If it is "List Tile view" the you can go to Screen/s that are being referred for Row and Selected in "List Tile view" settings and write a hidden rule for that field using condition that you want.

If it is "List View" then go to that column which you want to hide and either remove it or write an enable rule for that column depending upon your condition to not enable it.

Regards,

AK

Former Member
0 Kudos

Thanks for the reply.

I am having an Include rule. I want to check if itemtype == "ALBJ" or itemtype="BHGF" or itemtype="KJHU". If anything matches, that row should not be displayed in the list tile view.

How will i write an include rule for this.

if

     or

          not

               eqstr

                    itemtype (property)

                    ALBJ

           not

               eqstr

                    itemtype (property)

                    KJHU

This works fine. If i add one more not, it fails. Where am i wrong?

Please help.

Thanks,

Divya

former_member208808
Active Participant
0 Kudos

Hi,

That's correct,

OR function returns true if one of its parameter is true,

but you need to be careful since it checks precedence as well.

1) OR is true associated for first expression--->meaning if first parameter evaluates to true it wont check remaining since final outcome would be true irrespective of there values

whereas

2) AND is false associated for first expression--->meaning if first parameter evaluates to false it wont check remaining since final outcome would be false irrespective of there values


So modify your rule like this....


NOT

    OR

       EQSTR

                    itemtype (property)

                    ALBJ

       EQSTR

                    itemtype (property)

                    BHGF

       EQSTR

                    itemtype (property)

                    KJHU

Regards,

AK

Answers (1)

Answers (1)

sravanthi_polu
Contributor
0 Kudos

Hi,

If you want to display the Kilometer field based on condition, try writting hidden rule on that field.

If you want to completely hide the field choose the option "Always hidden".

Thanks & Regards,

Sravanthi Polu