Open the WorkItem Editor Programmatically
Hi All,
I am implementing aclient side operation advisor which uses Programmatic WorkItem Creation and Saves it using the following code.
So if this save operation fails due to some reason, I want the code to automatically open the workitem editor for this workitem so that the changes can be reviewed.
How can this be achieved ?
Any hints would be great ...
Warm Regards,
Arun
I am implementing a
try
{
myWorkingCopy.save(monitor);
}
So if this save operation fails due to some reason, I want the code to automatically open the workitem editor for this workitem so that the changes can be reviewed.
How can this be achieved ?
Any hints would be great ...
Warm Regards,
Arun
One answer
Hi Arun, that is unfortunately beyond my knowledge today. You could potentially provide an URL in the status message that allows to open the work item by clicking. (That would work with ll IDE's). Or you look into the SDK code how the editor on a work item is invoked. It is certainly somewhere in there.