I need to write some Javascript code that will delete a row from a
repeating
table. When the item in the table is chosen I will use the data in the
bound
field to iterate through the table looking for a match. After it is
found I
would like to delete that row. I do not want to use the out of the box
remove
functionality.
Thanks in advance.
suresh Reddy - 01 Feb 2006 09:44 GMT
Hi craigs,
Have you tried removeChild(node)?
If in one on the built-in event handler or button click:
var node = eventObj.Source;
node.parentNode.removeChild(node);
Hope that it helps.
Thank u

Signature
suresh Reddy
www.autonomysystems.com.
> I need to write some Javascript code that will delete a row from a
> repeating
[quoted text clipped - 7 lines]
>
> Thanks in advance.
craigs714@comcast.net - 03 Feb 2006 03:21 GMT