シルバーストライプ 2.4.7
やあ
このチュートリアルを読んで実装しようとしましたが、混乱しています。動作していないようですが、エラーなどは発生していません。
私の質問は、モジュールなどのようなものが欠けていますか? 私はそのようにコードを実装しました...
JQ = jQuery.noConflict();
JQ(document).ready(function() {
// Find the select box, named differently on the update and add forms
var sel = JQ('select[id="DataObjectManager_Popup_DetailForm_Status"]');
if (sel.attr('id') == undefined) {
sel = JQ('#DataObjectManager_Popup_DetailForm_Status');
}
// hide either the internal or external link editing box
if (sel.val() == 'rejected' || 'Rejected') {
JQ('#DataObjectManager_Popup_DetailForm_Reason').show();
} else {
JQ('#DataObjectManager_Popup_DetailForm_Reason').hide();
};
// toggle boxes on drop down change
sel.change(function(e) {
if (sel.val() == 'rejected' || 'Rejected') {
JQ('#DataObjectManager_Popup_DetailForm_Reason').show();
} else {
JQ('#DataObjectManager_Popup_DetailForm_Reason').hide();
};
});
});
ドロップダウンを使用しても何も起こらないので、モジュールもインストールする必要がありますか、それとも他に何か不足していますか?
前もって感謝します。