D
Danny
I have a web service with two methods - GetCustomer and UpdateCustomer.
GetCustomer is a secondary data source, and UpdateCustomer is used to update
details (via Submit). GetCustomer returns a "Customer" class from the web
service, and UpdateCustomer accepts an instance of the Customer class as a
parameter.
User enters a customer ID, and hits refresh - call is made to GetCustomer.
User can then update details such as customer name and hit Submit, and
UpdateCustomer is called. All works fine.
My problem is that the Customer class has an "Addresses" property, which is
an array of an "Address" class. I have a repeating table that shows the
addresses, but the user can't add a new row or delete and existing row. In
the properties for the repeating table, "Allow users to insert and delete
rows" is greyed out. Why is this greyed out? How can I allow my users to
add new rows? Is this something I have to set up programatically?
TIA,
D.
GetCustomer is a secondary data source, and UpdateCustomer is used to update
details (via Submit). GetCustomer returns a "Customer" class from the web
service, and UpdateCustomer accepts an instance of the Customer class as a
parameter.
User enters a customer ID, and hits refresh - call is made to GetCustomer.
User can then update details such as customer name and hit Submit, and
UpdateCustomer is called. All works fine.
My problem is that the Customer class has an "Addresses" property, which is
an array of an "Address" class. I have a repeating table that shows the
addresses, but the user can't add a new row or delete and existing row. In
the properties for the repeating table, "Allow users to insert and delete
rows" is greyed out. Why is this greyed out? How can I allow my users to
add new rows? Is this something I have to set up programatically?
TIA,
D.