Visualforce ページから拡張メソッドを呼び出そうとしています。
<apex:page title="Title" standardController="Account" showChat="true" tabStyle="Account" standardStylesheets="true" showHeader="true" extensions="AccountExtension">
<script type="text/javascript">
Sfdc.onReady(function() {
if({!isTrue}){
// Do Something
}
});
</script>
私の拡張機能での私の方法:
public with sharing class AccountExtension {
public boolean isTrue(){
return true;
}
}
保存しようとすると、次のメッセージが表示されます: エラー: 不明なプロパティ 'AccountStandardController.isTrue'
何か案が?