jq_link_to_remote を使用して POST 経由でフォームを送信し、div を更新するにはどうすればよいですか?
testSuccess.php
<div id="list">
<form name="list" action="<?= url_for('shoppinglist/update'); ?>" method="post">
.
//some input text.
.
<?php
function addlink() {
$linkname = "+";
return jq_link_to_remote($linkname, array(
'update' => 'list',
'url' => 'shoppinglist/update',
'data' => 'list', //this might be the problem.
'loading' => jq_visual_effect('fadeIn', '#indicator'),
'complete' => jq_visual_effect('fadeOut', '#indicator'),
'method' => 'post',
));
}
echo addlink();
?>
<INPUT TYPE="button" VALUE="Cart" onClick="submitForm()">
</form>
</div>
アップデート
これを使用する場合:
<?php
echo form_remote_tag( array(
'url' => '@shoppinglist/update', // even when I don't type "@“
'update' => 'list',
'loading' => jq_visual_effect('fadeIn', '#indicator'),
'complete' => jq_visual_effect('fadeOut', '#indicator'),
));
?>
エラー: 未定義関数 form_remote_tag() の呼び出し
これを使用する場合:
function addlink() {
$linkname = "+";
return jq_form_remote_tag($linkname, array(
'url' => '@shoppinglist/update', // even when I don't type "@“
'update' => 'list',
'loading' => jq_visual_effect('fadeIn', '#indicator'),
'complete' => jq_visual_effect('fadeOut', '#indicator'),
'method' => 'post',
));
}
//I just echo a link!
echo addlink();
Error: Notice: Undefined index: url in ... JQueryHelper.php 行 353 および 410