Click here to Skip to main content
16,005,162 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Photo Album Pin
.NET4Ever14-Aug-07 17:47
.NET4Ever14-Aug-07 17:47 
GeneralRe: Photo Album Pin
Michael Sync15-Aug-07 16:50
Michael Sync15-Aug-07 16:50 
Questionhow to set default orientation(Landscape) for Internet Explorer Browser. Pin
Amit Agarrwal13-Aug-07 3:36
Amit Agarrwal13-Aug-07 3:36 
Questiongridviewn + button Pin
Oga M13-Aug-07 0:56
Oga M13-Aug-07 0:56 
QuestionTab widgets Pin
matjame12-Aug-07 23:47
matjame12-Aug-07 23:47 
AnswerRe: Tab widgets Pin
Michael Sync12-Aug-07 23:57
Michael Sync12-Aug-07 23:57 
GeneralRe: Tab widgets Pin
matjame13-Aug-07 2:47
matjame13-Aug-07 2:47 
GeneralRe: Tab widgets Pin
matjame13-Aug-07 21:54
matjame13-Aug-07 21:54 
Guys, I have found something pretty helpful but the problem is that the tabs do not give me the click event to interchange between them.Can someone tell me what Im doing wrong or show me how to get the click even to interchange between them. The code is pasted below.Thank you very much in advance.


body {font: 12px Tahoma}







#myTabs {width: 100%}





Tabs content goes here...


Back to tabs examples, all examples






var names = ["Start", "Another page", "The last page"];
var values = ["page1.htm", "page2.htm", "page3.htm"];

var tabs = new AW.UI.Tabs;
tabs.setId("myTabs");
tabs.setItemText(names);
tabs.setItemValue(values); // store page URLs in the 'value' property.
tabs.setItemCount(3);
tabs.refresh();






tabs.onSelectedItemsChanged = function(selected){

var index = selected[0];
var value = this.getItemValue(index);
window.status = index + ": " + value;

var http = new AW.HTTP.Request;
http.setURL(value);
http.response = function(text){
document.getElementById("myContent").innerHTML = text;
}

http.request();
}

tabs.setSelectedItems([0]); // load the first page.




kagiso

Questiondropdown to display the information vb.net(ASP.NET) Pin
Oga M12-Aug-07 23:43
Oga M12-Aug-07 23:43 
AnswerRe: dropdown to display the information vb.net(ASP.NET) Pin
Michael Sync13-Aug-07 0:01
Michael Sync13-Aug-07 0:01 
QuestionTHE ULTIMATE WEBSITE THAT YOU WANTED Pin
theamsun12-Aug-07 22:26
theamsun12-Aug-07 22:26 
AnswerRe: THE ULTIMATE WEBSITE THAT YOU WANTED Pin
Michael Sync12-Aug-07 23:49
Michael Sync12-Aug-07 23:49 
AnswerRe: THE ULTIMATE WEBSITE THAT YOU WANTED Pin
leckey13-Aug-07 5:37
leckey13-Aug-07 5:37 
AnswerRe: THE ULTIMATE WEBSITE THAT YOU WANTED Pin
blakey40413-Aug-07 5:55
blakey40413-Aug-07 5:55 
GeneralRe: THE ULTIMATE WEBSITE THAT YOU WANTED Pin
Pete O'Hanlon13-Aug-07 10:30
mvePete O'Hanlon13-Aug-07 10:30 
GeneralRe: THE ULTIMATE WEBSITE THAT YOU WANTED Pin
Guffa13-Aug-07 15:35
Guffa13-Aug-07 15:35 
GeneralRe: THE ULTIMATE WEBSITE THAT YOU WANTED Pin
Jay Gatsby13-Aug-07 16:45
Jay Gatsby13-Aug-07 16:45 
QuestionDynamic frames Pin
matjame12-Aug-07 21:32
matjame12-Aug-07 21:32 
QuestionTiming metrics through IwebBrowser2 Pin
rana7412-Aug-07 20:51
rana7412-Aug-07 20:51 
QuestionHow to Clear the Numbers.. Pin
Dotnetkanna12-Aug-07 19:45
Dotnetkanna12-Aug-07 19:45 
AnswerRe: How to Clear the Numbers.. Pin
Torsten Mauz13-Aug-07 1:45
Torsten Mauz13-Aug-07 1:45 
QuestionQuotation for we site Pin
Milind Panchal12-Aug-07 18:19
Milind Panchal12-Aug-07 18:19 
AnswerRe: Quotation for we site Pin
Steve Echols12-Aug-07 19:06
Steve Echols12-Aug-07 19:06 
AnswerRe: Quotation for we site Pin
R. Giskard Reventlov12-Aug-07 22:25
R. Giskard Reventlov12-Aug-07 22:25 
QuestionWebPart issue - Getting rid of borders Pin
MrKhal200712-Aug-07 16:30
MrKhal200712-Aug-07 16:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.