Skip to main content
Nintex Community Menu Bar
Answer

Showing Hidden Panels on click of Preview Tab

  • August 1, 2017
  • 3 replies
  • 28 views

Forum|alt.badge.img+1

I am building a wizard like functionality in nintex forms 0365. I show the panels on click of each tab.This works fine.

There is a requirement to show all the panels on click of "Preview Tab" or Button

 

I tried using formula TabButton!='Identify' || TabButton!='Preview' to show the same panel on click of Preview Tab as well but it doesn't work.

 

Is there any way to access panel id in JQuery ....I don't see any option in the control settings

 

 

The attached screenshot is the rule which I use to show panels on click of each tab

 

 

 

Best answer by lakshminarayana

Hi Ashish Rastogi‌,

try with this. for each tab add condition " && TabButton !='Preview' " to your rule like below.

TabButton !='Identify' && TabButton !='Preview'

Thanks,

Lakshmi C

3 replies

Forum|alt.badge.img+9

Hi Ashish Rastogi‌,

try with this. for each tab add condition " && TabButton !='Preview' " to your rule like below.

TabButton !='Identify' && TabButton !='Preview'

Thanks,

Lakshmi C


Forum|alt.badge.img+1

Hi Lakshmi,

I can try but putting and condition means that

Both tabs need some o be selected together

Just wanted to check if you are suggesting and due to specific nintex

behavior


Forum|alt.badge.img+9

The panel should hide only when 'Identify' and 'Preview' tabs both are not checked.