Check out the new locations for creating extensions

Check out the new locations for creating extensions

Are you looking to create more extensions for Zoho Projects? Create new extensions using Zoho Sigma for the below locations and extend the scope of Zoho Projects. Refer to our user guide for more information.
 
1. Task details right panel
 
You can create your extensions for the right side panel of the task details page. We have Zoho MeetingZoho Cliq and Harvest extensions created for this location.



2. Issue details right panel
 
You can create your extensions for the right side panel of the issue details page. We have Zoho Desk and Zoho Cliq extensions created for this location.
















3. Blueprint (During transition)
 
You can create your own extensions for the During transition setting of Blueprint. Users can associate extensions when configuring During transition.
 
The extension specific data can be stored against the transition using the blueprint_during set method 
zohoprojects.set("blueprint_during", data_to_be_stored).then(function(res) {
}



4. Task transition (task details page)
 
You can create your own extensions for the task transition location.
 
The extension specific data stored against the transition can be retrieved using the blueprint_during get method 
zohoprojects.get("blueprint_during").then(function(res) {
}
 
You can complete/close transition from within your extension using the completeTaskTransition & closeTransition options in invoke methods.
zohoprojects.invoke("completeTaskTransition"); & zohoprojects.invoke("closeTransition");




















Regards,
Zoho Projects Team