cancel
Showing results for 
Search instead for 
Did you mean: 

Tabs in interactive form

former_member212913
Participant
0 Kudos

Hi,

            iam designing an offline interactive form my client wants tabs in the output..for example creating a material on first tab material no, industrail sector, material type and in second tab basic data1, in third basic data2....

can we create tabs in interactive output if so how, anyones help will be appreciable..

Thanks inadvance,

Mahipal.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Can you please elaborate your issue?

Rgds,

Nitin

former_member212913
Participant
0 Kudos

HI Nitin,

             Thanks for reply...

My requirement is to design the form in the below format with 3 tabs basic view, purchase view, production view..same as below image.

Former Member
0 Kudos

Hi Mahipal,

You cannot use the per-delivered tabs, but you can create your own.

How to do this:

- Create a sub form main

- Create (for example) three children sub forms, set visibility (presence) like this: first = visible, second and third = hidden (exclude from layout)

- Create a header (like a header for changing tabs), use for example buttons

- Script on Click events for those buttons to hide the visible and make visible the selected (but hidden) sub form (change the tab).

Reward if useful.,

Best Regards,

Praveen Pulle.

former_member212913
Participant
0 Kudos

Hi Praveen,

                 Thanks for that, hey iam using  life cycle designer version where I dont have action builder option so do u have any piece of java script code that makes subform visible and invisible..

Thanks and Regards,

Mahipal.

Former Member
0 Kudos

Hi Mahipal,

Which version of ADS are you using?

I have taken 3 buttons which assumed to be Tabs (as we are not having Tab strip UI element.

you need to wrap what ever data is required in sub forms.So that you can make the sub form visible and invisible using java script.

In the below image i warped the 3 images in sub form.

This is the First screen.(for your understanding).

When the form generates it will be as:-

Write the code in Form Ready.(The default will be the image under the click button).

data.SB1.sb3im2.presence = "invisible";

data.SB1.sb4im3.presence = "invisible";

2) Write the code in Submit Button. And press the submit button.

data.SB1.sb2im1.presence = "invisible";

data.SB1.sb4im3.presence = "invisible";

data.SB1.sb3im2.presence = "visible";

3)Write the code in Roll Button. And press the Roll button.

   data.SB1.sb2im1.presence = "invisible";

   data.SB1.sb3im2.presence = "invisible";

   data.SB1.sb4im3.presence = "visible";

Best Regards,

Praveen Pulle.

former_member212913
Participant
0 Kudos

Hi Praveen,

                   hey i have installed 9.0 I have done with action builder.

now its working fine with sub forms and buttons which is looking same as tabs..

thanks Praveen for the help.

Regards,

Mahipal.

Answers (0)