alertify でボタンのラベルを変更する方法 - v0.3.11
以下のコードを使用しています
alertify.confirm("Are you sure you want to cancel this order?", function (e) {
if (e) {
document.forms.SFOrder.action=<cfoutput>'#self#=#xfa.cancelOrder#'</cfoutput>;
document.forms.SFOrder.submit();
return true;
} else {
return false;
}
}).setting('labels',{'ok':'Accept', 'cancel': 'Decline'});
しかし、それは以下のエラーを出しています
キャッチされていない TypeError: alertify.confirm(...).setting は関数ではありません