cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
khayati
Level 5

Disable Previous button in Install comp panel

Can somebody tell me how should i disable the previous button in Install comp panel which is there in Post-Installation task?
Labels (1)
0 Kudos
(2) Replies
MEinstaller
Level 7

Well you should be able to do it according to the IA api, but there is a bug in IA 2008 VP 1 which does not allow you to disable the previous or cancel buttons in the panel, even custom panels that you make yourself.

I found this out by reporting the problem to Acresso. I have no idea when they will fix it but I hope it's soon.
0 Kudos
khayati
Level 5

well i m able to disable or enable Prev and Next buttons in my Custom code panels by :-
public boolean okToGoPrevious(){
return false;
}
public boolean okToContinue(){
return false;
}

But what i want is to disable the prev button in the already created Install Complete IA Panel because if i created a custom panel for this, i m not sure what actuallt Install Complete panel funcations in IA internally as it may be setting Installation log,setting some variables etc.
0 Kudos