You need to sign in to do that
Don't have an account?

I have a Sturdy(Custom Object) related list under Standard Account object, i do want to make the New button of the Sturdy related list to be displayed only if the Account status is Active?
I have a Sturdy(Custom Object) related list under standard Account object, i do want to make the New button of the Sturdy related list to be displayed only if the Account status is Active?
- replace the related list with a Visualforce approximation.
- create a custom new button that hits an interim VF page to check if the account is active
- create a custom new button that executes JavaScript to check if the account is active
None of them are great options though.
Create two page layouts with new button enabled in one layout and not enabled on other..Write a workflow rule which checks the active field of account and based on the result update the recordtype id with required layout.
This will realy solves your issue.