Hide field based on multiselect field

 1 => 
          array (
            'name' => 'submissionduedate_c',
            'label' => 'LBL_SUBMISSIONDUEDATE',
             'displayLogic' => [
                    'hide_on_extension_flag_c' => [
                    'key' => 'displayType',
                    'modes' => [
                        'detail',
                        'edit',
                         'create',
                         ],
          'params' => [
              'fieldDependencies' => [
                  'extensionflag_c',
              ],
              'targetDisplayType' => 'none',
              'activeOnFields' => [
                  'extensionflag_c' => ['false'],
              ]
          ]

is it possible instead of extension flag to put a multiselect field because i tried and it didn’t work

Fields depend on multi-select fields are displayed/hidden only after saving the record.

'displayLogic' => [
	'hide_chq_cash' => [
	'key' => 'displayType',
	'modes' => ['create','edit','detail'],
		'params' => [
			'fieldDependencies' => ['accepted_modes_c'],
			'targetDisplayType' => 'none',
			'activeOnFields' => [
				'accepted_modes_c' => ['c1','c2'],
			],
		],
	],
],
1 Like

thank you but isn’t there any other way to do it without having to save

if not is there a way i could filter the multiselect dropdown as in dynamic dropdown