Hi Mapraputa, I'm creating a row dynamically using DOM objects. I have one row always with all properties and attributes set and simply I need to replicate that row. I have a drop-down combo in one cell with hard-coded options in it and the same is to be repeated in the newly created Combo... var currText = document.createElement("select"); currText.setAttribute("name","cmbValueType"+(j+1)); currText.setAttribute("size",1); Let me know the possibilities to attach the options like '=', '<', '>' etc. to the drop down.
------------------
subject: Setting the values in Combo using DOM objects