Avatar

Level 2

Hello All,

I have a scenario where:

1. I have a Table with Rows with readOnly property.

2. I want to add a new Row to the table dynamically, and that new Row should be writeable.

3.I have added the the following line in the click event of the button which adds a new row.

form1.Table1.Row1.access="";

But in the output the Row gets added which is not writeable.

If we add

form1.Table1.access = "";

then, new Row gets added but it changes the access of the whole table to writeable.

I want to change the access of the newly added row only and not the existing rows.

How can we do it?

Thanks and Regards,

Nikhil