Question
Bulk Actions on Embedded Pages
Hi i am having requirement to perform bulk update on the embedded pages. Here is the requirement. For example there is a simple page list and there are 100 objects like this
pyWorkPage.Account(1).Address(1).Description
pyWorkPage.Account(1).Address(2).Description
pyWorkPage.Account(2).Address(1).Description
pyWorkPage.Account(2).Address(2).Description
Using the bulk update process, a user should able to dynamically select the description field and update it. I mean, for 20 objects user should update Account(1).Address(2).Description and for 50 Account(2).Address(1).Description or for other 30 Account(2).Address(2).Description.
Again, user should have an option to update which tree structure/embedded page field he/she is updating over 1000 objects. is there a better way of implementation?
Sri.
Sri,
What you are talking about is definitely doable. There isn't any facility that I'm aware of out of the box to just do what you want. The amount of complexity for your custom code will really depend on the level of flexibility you want to give your users. If you want to allow them to select any number of leaves in the tree, and then update the selected nodes, it will involve more work than allowing them to select a consecutive group of leaves which all reside on the same branch, for example. Do you have a specific question we can help you answer?
Thanks,
Mike