Click here to Skip to main content
16,006,768 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionFilling Dropdown using Javascript Pin
Mahesh.J5-Jun-08 1:37
Mahesh.J5-Jun-08 1:37 
AnswerRe: Filling Dropdown using Javascript Pin
ToddHileHoffer5-Jun-08 2:19
ToddHileHoffer5-Jun-08 2:19 
GeneralRe: Filling Dropdown using Javascript Pin
Mahesh.J5-Jun-08 2:22
Mahesh.J5-Jun-08 2:22 
GeneralRe: Filling Dropdown using Javascript Pin
ToddHileHoffer5-Jun-08 2:51
ToddHileHoffer5-Jun-08 2:51 
AnswerRe: Filling Dropdown using Javascript Pin
r aa j5-Jun-08 2:21
r aa j5-Jun-08 2:21 
GeneralRe: Filling Dropdown using Javascript Pin
Mahesh.J5-Jun-08 2:25
Mahesh.J5-Jun-08 2:25 
GeneralRe: Filling Dropdown using Javascript Pin
r aa j5-Jun-08 2:36
r aa j5-Jun-08 2:36 
GeneralRe: Filling Dropdown using Javascript Pin
Mahesh.J5-Jun-08 2:41
Mahesh.J5-Jun-08 2:41 
var ddlVendor = window.opener.document.getElementById(gId);

//Clears the combo box contents.
for (var count = ddlVendor.options.length-1; count >-1; count--)
{
ddlVendor.options[count] = null;
}

var vendorNodes = listNode.getElementsByTagName('Table1/Name');
var vendorIds = listNode.getElementsByTagName('Table1/Id');
var textValue;
var idValue;
var optionItem;
//Add new vendors list to the vendors combo box.
for (var count = 0; count < vendorNodes.length; count++)
{
textValue = GetInnerText(vendorNodes[count]);
idValue = GetInnerText(vendorIds[count]);
var newOption = window.opener.document.createElement('OPTION');
newOption.text = textValue;
newOption.value = idValue;
ddlVendor.options.add(newOption);
}
ddlVendor.selectedIndex = count-1;
GeneralRe: Filling Dropdown using Javascript Pin
r aa j5-Jun-08 2:49
r aa j5-Jun-08 2:49 
AnswerRe: Filling Dropdown using Javascript Pin
Vasudevan Deepak Kumar8-Jun-08 21:10
Vasudevan Deepak Kumar8-Jun-08 21:10 
Questionneed answer for transactions Pin
Kissy165-Jun-08 1:19
Kissy165-Jun-08 1:19 
AnswerRe: need answer for transactions Pin
ToddHileHoffer5-Jun-08 2:15
ToddHileHoffer5-Jun-08 2:15 
QuestionApplication structure - what do you do? Pin
Rohde5-Jun-08 1:08
Rohde5-Jun-08 1:08 
AnswerRe: Application structure - what do you do? Pin
eyeseetee5-Jun-08 1:29
eyeseetee5-Jun-08 1:29 
AnswerRe: Application structure - what do you do? Pin
N a v a n e e t h5-Jun-08 1:45
N a v a n e e t h5-Jun-08 1:45 
GeneralRe: Application structure - what do you do? Pin
Rohde5-Jun-08 1:57
Rohde5-Jun-08 1:57 
GeneralRe: Application structure - what do you do? Pin
ToddHileHoffer5-Jun-08 2:45
ToddHileHoffer5-Jun-08 2:45 
GeneralRe: Application structure - what do you do? Pin
N a v a n e e t h5-Jun-08 7:29
N a v a n e e t h5-Jun-08 7:29 
GeneralRe: Application structure - what do you do? Pin
ToddHileHoffer5-Jun-08 7:54
ToddHileHoffer5-Jun-08 7:54 
Questiondifferentiate b/w ajax and update panel? Pin
Member 38798815-Jun-08 0:23
Member 38798815-Jun-08 0:23 
AnswerRe: differentiate b/w ajax and update panel? Pin
r aa j5-Jun-08 0:37
r aa j5-Jun-08 0:37 
Questionquestion Pin
nithydurai5-Jun-08 0:10
nithydurai5-Jun-08 0:10 
AnswerRe: question DONT ANSWER THIS POST Pin
eyeseetee5-Jun-08 0:21
eyeseetee5-Jun-08 0:21 
JokeRe: question DONT ANSWER THIS POST Pin
Guffa5-Jun-08 6:17
Guffa5-Jun-08 6:17 
AnswerRe: question Pin
Christian Graus5-Jun-08 4:49
protectorChristian Graus5-Jun-08 4:49 

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.