This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- Disable Previous button in Install comp panel
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 04, 2008
01:28 PM
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?
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 04, 2008
04:02 PM
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.
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.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 04, 2008
11:23 PM
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.
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.
