Click here to Skip to main content
15,887,596 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: VS 2008 Web Deployment Pin
DuneAgent21-Dec-09 13:03
DuneAgent21-Dec-09 13:03 
GeneralRe: VS 2008 Web Deployment Pin
April Unni22-Dec-09 5:04
April Unni22-Dec-09 5:04 
GeneralRe: VS 2008 Web Deployment Pin
DuneAgent22-Dec-09 5:13
DuneAgent22-Dec-09 5:13 
QuestionDynamically Added form controls using Javascript do not get recognized as form elements? Pin
malvik17-Dec-09 6:16
malvik17-Dec-09 6:16 
AnswerRe: Dynamically Added form controls using Javascript do not get recognized as form elements? Pin
John Bracey17-Dec-09 7:03
John Bracey17-Dec-09 7:03 
GeneralRe: Dynamically Added form controls using Javascript do not get recognized as form elements? Pin
malvik17-Dec-09 8:15
malvik17-Dec-09 8:15 
GeneralRe: Dynamically Added form controls using Javascript do not get recognized as form elements? Pin
John Bracey17-Dec-09 9:09
John Bracey17-Dec-09 9:09 
GeneralRe: Dynamically Added form controls using Javascript do not get recognized as form elements? Pin
malvik17-Dec-09 9:40
malvik17-Dec-09 9:40 
Sure here's my story:

Here is the JS function that adds a row to a table inside a form that contains the textbox in question.

function ppl_add_admin_asst(id, resultsArray){

if(resultsArray.length > 0){
var name = resultsArray[..][..];
var id = resultsArray[..][..];

var str = "<tr id='asst_"+id+"_row'><td>";
var str1 = "<input type='text' readonly='readonly' name='admin_asst["+id+"][name]' id='admin_asst_"+id+"_name' value='"+name+"' />";
str1 += "&nbsp;<span class='form_elements_edit' style='font-weight:bold'><a href='#' onclick=\"removeRow('admin_asst_"+id+"_row');\"><img border='0' src='images/buttons/edit.gif' > Remove</a></span>";
str += str1+"</td></tr>";

//appending it to the table which is already a part of the form should include this new textbox to be part of the form
$("#assts_table").append(str);
//However, I need to explicitly add it to the form as well for it to work correctly
$("#edit_form").append(str1);
cancelFindProfile(id);
}
}
GeneralRe: Dynamically Added form controls using Javascript do not get recognized as form elements? Pin
John Bracey17-Dec-09 10:13
John Bracey17-Dec-09 10:13 
GeneralRe: Dynamically Added form controls using Javascript do not get recognized as form elements? Pin
malvik17-Dec-09 10:16
malvik17-Dec-09 10:16 
GeneralRe: Dynamically Added form controls using Javascript do not get recognized as form elements? Pin
John Bracey17-Dec-09 10:21
John Bracey17-Dec-09 10:21 
GeneralRe: Dynamically Added form controls using Javascript do not get recognized as form elements? Pin
User 171649217-Dec-09 10:45
professionalUser 171649217-Dec-09 10:45 
GeneralRe: Dynamically Added form controls using Javascript do not get recognized as form elements? Pin
malvik17-Dec-09 10:50
malvik17-Dec-09 10:50 
QuestionHow can I customize the highlight color (i.e. when we select any text) in MSHTML? Pin
ammar_bharmal16-Dec-09 23:25
ammar_bharmal16-Dec-09 23:25 
QuestionDynamic IP & Writing to the Webspace Pin
GrgBalden16-Dec-09 9:55
GrgBalden16-Dec-09 9:55 
AnswerRe: Dynamic IP & Writing to the Webspace Pin
Dr.Walt Fair, PE16-Dec-09 10:04
professionalDr.Walt Fair, PE16-Dec-09 10:04 
GeneralRe: Dynamic IP & Writing to the Webspace Pin
GrgBalden16-Dec-09 10:43
GrgBalden16-Dec-09 10:43 
AnswerRe: Dynamic IP & Writing to the Webspace Pin
Adam Maras16-Dec-09 10:44
Adam Maras16-Dec-09 10:44 
QuestionCSS Multi Browsers Pin
SRJ9216-Dec-09 8:03
SRJ9216-Dec-09 8:03 
AnswerRe: CSS Multi Browsers Pin
User 171649216-Dec-09 8:46
professionalUser 171649216-Dec-09 8:46 
GeneralRe: CSS Multi Browsers Pin
SRJ9216-Dec-09 8:48
SRJ9216-Dec-09 8:48 
GeneralRe: CSS Multi Browsers Pin
User 171649216-Dec-09 11:03
professionalUser 171649216-Dec-09 11:03 
GeneralRe: CSS Multi Browsers Pin
SRJ9216-Dec-09 11:05
SRJ9216-Dec-09 11:05 
GeneralRe: CSS Multi Browsers Pin
User 171649216-Dec-09 11:32
professionalUser 171649216-Dec-09 11:32 
Questionrandomly generate a number every X minutes (php) Pin
Yustme16-Dec-09 3:27
Yustme16-Dec-09 3:27 

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.