-
Ext User
Problem With cloning table row contained combobox
I have a HTML table with a row contained 2 Ext combo boxes, 1 Ext text box and 2 Ext buttons.
Now i am trying to add some rows dynamically(code below) by cloning the 1st row, the rows are added but clicking on the trigger of combobox of newly created row it alway opens the list of the combo box of the 1st row.plzz help me to resolve this.
The function i have called :
function addRow(objTable)
{
var objFirstTR = objTable.rows[0];
var objNewTR = objFirstTR.cloneNode(true);
objTable.appendChild(objNewTR);
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules