cancel
Showing results for 
Search instead for 
Did you mean: 

Customizing the palette - Start Event

lucastdcj
Champ in-the-making
Champ in-the-making
Hi all,

I am trying to customize my palette in the 5.9 version but I have a little problem. Basically I would like to remove all paletteEntry except StartEvent and End Event. But when I try remove one by one, it means:

List<PaletteEntry> result = new ArrayList<PaletteEntry>();
   result.add(PaletteEntry.ALFRESCO_MAIL_TASK);
   result.add(PaletteEntry.ALFRESCO_SCRIPT_TASK);
   result.add(PaletteEntry.ALFRESCO_START_EVENT);
   result.add(PaletteEntry.ALFRESCO_USER_TASK);
   result.add(PaletteEntry.BOUNDARY_TIMER);

result.add(PaletteEntry.TIMER_START_EVENT);
result.add(PaletteEntry.USER_TASK);
I don't remove all palette, I have for example the Boundary events and Intermediate Event …

But when I do
result.add(PaletteEntry.ALL);
I also remove Start Event and Event.

So I would like to know if it's possible to do. Or can I create a process without start and end events?

Thank you,
Lucas
1 REPLY 1

lucastdcj
Champ in-the-making
Champ in-the-making
Hi I solved the problem.

I had the bad versions installed. When I updated to 5.9 it worked fine.