Open specific page in form

Hi
i have a form with 5 pages. Is it possible to open the form in a specific tab? With sc_redir or also with URL like index.php?page=User_form4 would be nice.

Best regards
Steve

WIthin standard SC you cannot do this. I’m not very good at javascript, but I think that’s the way to go. With sc macro’s you can call javascript procedures.

See this link…

http://www.scriptcase.net/forum/showthread.php?6947-SOLVED-How-to-land-on-a-specific-form-record&highlight=specific+record

Hi
Thank’s, but that’s not i want. I have make pages (like Tabs) in my App to show the huge of data from one record. Now i found a solution to jump to a specific page (tab). On the onload Event i do:

if ([tab] <>""){
	$_tab="User_form".[tab];
	sc_ajax_javascript('sc_exib_ocult_pag', array($_tab));
	[tab]="";
}

Now i can call my form with the global var [tab] and it jumps to the tab. If [tab] empty, it does open normal (select tab as “Optional” in Application=> Golbal Variables). But CAUTION: You have to check the name of your page. In my case it’s “User_form” followed by the number. You can easy do with Chrome or Firefox.

If you want to open a specific record too, you can follow the linked thread above…

Best regards
Steve