RE: TMT tabs question

2006-07-05 Thread Andy Matthews
Okay... I found a ID attribute that wasn't being used in the example. But it only applies an ID to the HREF tag which triggers the switch, not to the page itself. Anyone have an idea? !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc.

Re: TMT tabs question

2006-07-05 Thread Robert Everland III
I just added a new attribute called link and if I want the tab to go to a new page I put the whole url in, something like this index.cfm?tab=5 .Then in my code I can see which tab to display so it doesn't have to be written for all of the tabs.

Re: TMT tabs question

2006-07-05 Thread Massimo Foti
I found a ID attribute that wasn't being used in the example. But it only applies an ID to the HREF tag which triggers the switch, not to the page itself. Anyone have an idea? The call to the switching JavaScript call looks like this whenever is called within the a tag: tmt_tabSwitch(this,

Re: TMT tabs question

2006-07-05 Thread Massimo Foti
I just added a new attribute called link and if I want the tab to go to a new page I put the whole url in, something like this index.cfm?tab=5 .Then in my code I can see which tab to display so it doesn't have to be written for all of the tabs. For making anything but the first tab whenever the

Re: TMT tabs question

2006-07-05 Thread Robert Everland III
For making anything but the first tab whenever the page loads, you could leverage the selectedtab attribute (I added it a few months ago). As far as I understood, Andy wants to do a different thins, he has to switch tab, client-side without clicking on the tab label. I forgot that part, I use

RE: TMT tabs question

2006-07-05 Thread Andy Matthews
Message- From: Massimo Foti [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 05, 2006 11:33 AM To: CF-Talk Subject: Re: TMT tabs question I found a ID attribute that wasn't being used in the example. But it only applies an ID to the HREF tag which triggers the switch, not to the page itself