私がしたいことは次のとおりです。ビューを持つページにフォームをレンダリングしたい。このビューには「ノート」(= CT注)のリストがあります。フォームに記入すると、メモが保存され、フォームが消去され、新しいメモがリストに追加されます。すべてページの更新なし。drupal ajaxフォーム
Iは、モジュールnew_noteを作成し、この関数をaddes:
function new_note_form($nodeid = NULL) {
ctools_include('ajax');
// drupal_add_js(drupal_get_path('module', 'custom_forms') . '/js/note_form.js');
//dpm($nodeid);
module_load_include('inc', 'node', 'node.pages');
$form = node_add('note');
$form['field_note_reference']['und']['#value'] = '2';
$form['field_note_reference']['und']['#validated'] = 'TRUE';
$form['field_note_reference']['#attributes']['class'][] = "hidden";
$form['submit'] = array(
'#type' => 'submit',
'#value' => 'Submit',
'#executes_submit_callback' => FALSE,
'#ajax' => array(
'callback' => 'ajax_note',
'wrapper' => 'status',
),
);
$output= drupal_render($form);
dpm($form);
print $output;
}
function ajax_note(&$form, &$form_state) {
return 'test';
}
Iメモリストの上にレンダリングされる表示スイートブロックフィールド、この機能を使用します。ここまでは順調ですね。
唯一の問題は、フォームを送信すると、ajaxが呼び出されず、通常の送信が行われることです。
誰でも私を助けることができます
@編集。
私がコードを変更し、アヤックスを働かせたことを示すcliveが提案された後。
function new_notes_form($nodeid = NULL) {
global $user;
$node = (object) array(
'uid' => $user->uid,
'name' => (isset($user->name) ? $user->name : ''),
'type' => 'note',
'language' => LANGUAGE_NONE,
);
$form_state = array();
$form_state['build_info']['args'] = array($node);
form_load_include($form_state, 'inc', 'node', 'node.pages');
$form = drupal_build_form('note_node_form', $form_state);
$form['field_note_reference']['und']['#value'] = '2';
$form['field_note_reference']['#attributes']['class'][] = "hidden";
$form['submit'] = array(
'#type' => 'button',
'#value' => 'Submit',
'#limit_validation_errors' => array(),
'#ajax' => array(
'callback' => 'ajax_note_replace',
'wrapper' => 'status',
),
);
return $form;
}
function ajax_note_replace(&$form, &$form_state) {
dpm("test");
dpm($form);
$output = '<h1>' . t('Hello World') . '</h1>';
// $node = node_load('6');
// $output .= drupal_render(node_view($node, $style = 'teaser', $options = array()));
ctools_include('ajax');
$commands = array();
$commands[] = ajax_command_prepend(".view-content", $output);
print ajax_render($commands); // this function exits.
exit;
}
@Clive、残念ながらお世話になりますか?私はノードをコールバックに保存したい(有効な場合は?)。 ajaxコールバックで、node-idはまだ格納されていないのでnullですか?ノードを検証して保存するにはどうしたらいいですか?それ以外の場合は、有効でないフォーム項目を通常どおり赤に設定します。
'advanced_form_callback()'のコードを投稿できますか? – Clive
申し訳ありませんが間違ったバージョンを更新しました – Nealv