Click here to Skip to main content
15,904,652 members

Comments by mahesh_npr (Top 2 by date)

mahesh_npr 2-Jul-12 2:59am View    
hi,
Sandeep Mewara
firstly thank you for the reply i am giving the details below kindly check and advice

i am trying to add dynamic rows(html,using javascript) using the below code(for this in html i have created one row with the same fields and once user clicks add button i am calling this function) it works and i am able to create rows dynamically and also able to insert the data into the database(using IE only)(using JSP) but with any other browser i am able to add rows dynamically(in mozilla,chrome) but when i am saving data it is taking the first record only and not the remaining values


function addRow(tableID) {
var table = document.getElementById(tableID);
var rowCount = table.rows.length;
var row = table.insertRow(rowCount);
var colCount = table.rows[0].cells.length;
for(var i=0; i
mahesh_npr 9-Jul-10 8:14am View    
firstly thank you for the quick reply

but google , bable all are same we have to provide their link i my application and the data will be displayed from their database , but my prob is i should convert the text entered in (textbox) english to telugu/hindi from my database so i am trying for any java api /(javascript) which could help me in doing this