Click here to Skip to main content
15,895,084 members
Home / Discussions / Web Development
   

Web Development

 
QuestionASP ADO Variable Problem [modified] Pin
Soot22-Aug-06 10:22
Soot22-Aug-06 10:22 
GeneralRe: ASP ADO Variable Problem Pin
Guffa22-Aug-06 11:18
Guffa22-Aug-06 11:18 
GeneralRe: ASP ADO Variable Problem Pin
Soot23-Aug-06 4:26
Soot23-Aug-06 4:26 
Questionbanner rotator for html in html Pin
tetraso22-Aug-06 6:26
tetraso22-Aug-06 6:26 
AnswerRe: banner rotator for html in html Pin
User 171649222-Aug-06 10:05
professionalUser 171649222-Aug-06 10:05 
GeneralRe: banner rotator for html in html Pin
tetraso23-Aug-06 23:45
tetraso23-Aug-06 23:45 
GeneralRe: banner rotator for html in html Pin
User 171649225-Aug-06 1:58
professionalUser 171649225-Aug-06 1:58 
Questioncontext menu Pin
248912822-Aug-06 0:20
248912822-Aug-06 0:20 
Hi! I am SAMIR. iwrote a html page using qooxdoo as ....


<title>Untitled Page



window.application.main = function()
{
var d = this.getClientWindow().getClientDocument();

var insCmd = new QxCommand("Ctrl+Insert");
insCmd.addEventListener("execute", function(e){alert("Ctrl+Insert");});

var delCmd = new QxCommand("Ctrl+Del");
delCmd.addEventListener("execute", function(e){alert("Ctrl+Del");});

var escCmd = new QxCommand("Esc");
escCmd.addEventListener("execute", function(e){alert("Esc");});


var contextMenu;

function createMenu()
{
contextMenu = new QxMenu();

var insMenuBtn = new QxMenuButton("Add New Document",
"scripts/themes/icons/crystalsvg/16/apply.png", insCmd);
var delMenuBtn = new QxMenuButton("Detach This Document",
"scripts/themes/icons/crystalsvg/16/edit-delete.png", delCmd);
var lnMenuSptr = new QxMenuSeparator();
var escMenuBtn = new QxMenuButton("Exit", "scripts/themes/icons/crystalsvg/16/exit.png",
escCmd);

contextMenu.add(insMenuBtn,delMenuBtn,lnMenuSptr,escMenuBtn);

d.add(contextMenu);
};
function showMenu()
{
createMenus();
contextMenu.show()
};
};






123
456
789





i want when ever i right clicked on any row of the table, then context menu should be displayed. for this i used code: oncontextmenu=’showMenu(); return false;’ on every row of table. but context menu doesn't display. please help me.
AnswerRe: context menu Pin
Guffa22-Aug-06 6:00
Guffa22-Aug-06 6:00 
Questionis their any way to disable or hide only close button in titlebar of browser window Pin
jagmit2021-Aug-06 21:29
jagmit2021-Aug-06 21:29 
QuestionHeader and footer of web page Pin
Geo S Neeliyara21-Aug-06 15:58
Geo S Neeliyara21-Aug-06 15:58 
AnswerRe: Header and footer of web page Pin
Boro_Bob22-Aug-06 0:01
Boro_Bob22-Aug-06 0:01 
QuestionASP Datagrid SQL Select Parameter Problem Pin
Soot21-Aug-06 9:56
Soot21-Aug-06 9:56 
AnswerRe: ASP Datagrid SQL Select Parameter Problem Pin
Chris McGlothen21-Aug-06 11:46
Chris McGlothen21-Aug-06 11:46 
GeneralRe: ASP Datagrid SQL Select Parameter Problem Pin
Chris McGlothen21-Aug-06 12:15
Chris McGlothen21-Aug-06 12:15 
QuestionInfoPath + SharePoint + Reporting Services???? Pin
Stas21-Aug-06 5:56
Stas21-Aug-06 5:56 
QuestionTricky!!! Layoutproblem with JS generated select element Pin
Stephan Pilz20-Aug-06 23:24
Stephan Pilz20-Aug-06 23:24 
AnswerRe: Tricky!!! Layoutproblem with JS generated select element Pin
Guffa21-Aug-06 0:23
Guffa21-Aug-06 0:23 
GeneralRe: Tricky!!! Layoutproblem with JS generated select element Pin
Stephan Pilz21-Aug-06 0:28
Stephan Pilz21-Aug-06 0:28 
GeneralRe: Tricky!!! Layoutproblem with JS generated select element Pin
Stephan Pilz21-Aug-06 1:48
Stephan Pilz21-Aug-06 1:48 
AnswerRe: Tricky!!! Layoutproblem with JS generated select element Pin
Paddy Boyd21-Aug-06 3:46
Paddy Boyd21-Aug-06 3:46 
GeneralRe: Tricky!!! Layoutproblem with JS generated select element Pin
Stephan Pilz22-Aug-06 2:16
Stephan Pilz22-Aug-06 2:16 
QuestionJavaScript Pin
peshawarcoder20-Aug-06 23:11
peshawarcoder20-Aug-06 23:11 
AnswerRe: JavaScript Pin
User 171649221-Aug-06 5:15
professionalUser 171649221-Aug-06 5:15 
GeneralRe: JavaScript Pin
peshawarcoder21-Aug-06 21:08
peshawarcoder21-Aug-06 21:08 

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.