function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
v varaprasadv varaprasad 

VF page On task Object

Hi

    I need to create multiple tasks in single page and i need to assign to user.Through vf page how we will implement this one .

 We need to have a VF section  so that from same page I can create multiple tasks without navigating to different page. Essentially in new task we need to have all the fields and can only refer what is in Action plan. 

Thanks to all ....
 

 
sandeep sankhlasandeep sankhla
You can maek use of wrapper class and insert as many task you want to insert all together..

Create a VF page and using wrapper class simply show task fields to fill and on click of a button check all wrapper class list and insert that many tasks..

Thanks