Click here to Skip to main content
15,884,388 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Need Help to migrate Pin
K030626-Jun-09 19:34
K030626-Jun-09 19:34 
GeneralRe: Need Help to migrate Pin
Senthil S26-Jun-09 20:58
Senthil S26-Jun-09 20:58 
GeneralRe: Need Help to migrate Pin
K030627-Jun-09 0:17
K030627-Jun-09 0:17 
Questionwriting a test application Pin
Okafor Francesca26-Jun-09 1:51
Okafor Francesca26-Jun-09 1:51 
AnswerRe: writing a test application Pin
DoctorMick26-Jun-09 2:06
DoctorMick26-Jun-09 2:06 
GeneralRe: writing a test application Pin
Okafor Francesca26-Jun-09 2:31
Okafor Francesca26-Jun-09 2:31 
GeneralRe: writing a test application Pin
Vimalsoft(Pty) Ltd28-Jun-09 22:18
professionalVimalsoft(Pty) Ltd28-Jun-09 22:18 
Questionlistboxitems are not disabled in IE6 Pin
SRKSHOME25-Jun-09 22:22
SRKSHOME25-Jun-09 22:22 
Hi,
I am trying to disable some items in listbox through javascipt in ASP.net
These items are disabling in IE8 but not disabling in IE6. How can I do it?


var lstRight = document.getElementById("lstSelection");
var fixedFieldIds = document.getElementById("hdnFixedFieldId");
var fieldIdArray = fixedFieldIds.value.split('^');

if(fieldIdArray)
{
for(var i =0;i<fieldIdArray.length;i++)
{
for(var j=0; j<lstRight.options.length; j++)
{
if(lstRight.options[j].value == fieldIdArray[i])
{
lstRight.options[j].disabled = true;
break;
}
}
}
}
AnswerRe: listboxitems are not disabled in IE6 Pin
Marc Firth28-Jun-09 22:08
Marc Firth28-Jun-09 22:08 
QuestionMessage Closed Pin
25-Jun-09 20:38
sreekanth55525-Jun-09 20:38 
AnswerRe: Free Web Development Projects Pin
padmanabhan N25-Jun-09 21:28
padmanabhan N25-Jun-09 21:28 
Answer** Advert ** Pin
Nagy Vilmos25-Jun-09 22:57
professionalNagy Vilmos25-Jun-09 22:57 
QuestionLokking for a way to create a dynamic list with multiple Column Pin
tiran_kaskas25-Jun-09 1:49
tiran_kaskas25-Jun-09 1:49 
AnswerCreate a datatable Pin
David Mujica25-Jun-09 2:46
David Mujica25-Jun-09 2:46 
GeneralRe: Create a datatable Pin
tiran_kaskas25-Jun-09 9:47
tiran_kaskas25-Jun-09 9:47 
GeneralRe: Create a datatable Pin
DJ Matthews25-Jun-09 10:28
DJ Matthews25-Jun-09 10:28 
GeneralRe: Create a datatable Pin
tiran_kaskas25-Jun-09 10:35
tiran_kaskas25-Jun-09 10:35 
GeneralRe: Create a datatable Pin
DJ Matthews25-Jun-09 10:37
DJ Matthews25-Jun-09 10:37 
GeneralRe: Create a datatable Pin
tiran_kaskas29-Jun-09 4:56
tiran_kaskas29-Jun-09 4:56 
QuestionVista gadget Popup Pin
V.24-Jun-09 22:05
professionalV.24-Jun-09 22:05 
QuestionDrop down list value reeturned on submit button being clicked? Pin
cdietschrun24-Jun-09 10:03
cdietschrun24-Jun-09 10:03 
AnswerRe: Drop down list value reeturned on submit button being clicked? Pin
Marc Firth25-Jun-09 1:57
Marc Firth25-Jun-09 1:57 
GeneralRe: Drop down list value reeturned on submit button being clicked? Pin
cdietschrun25-Jun-09 2:25
cdietschrun25-Jun-09 2:25 
QuestionDLL based authentication on Classic ASP Pin
vafo24-Jun-09 6:38
vafo24-Jun-09 6:38 
QuestionForce Download in IE8 ?? Pin
rodolfofmoreira24-Jun-09 4:03
rodolfofmoreira24-Jun-09 4:03 

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.