การส่งค่าเมื่อคลิ๊กปุ่ม
<form id=setup_frm class="setup_frm" name=setup_frm method=post action=index.php>
.
.
<input type=hidden id=write_id name=write_id value=1>
<input type=submit class="btn save" value="Save">
<input id="create" type=button class="btn" value="Create">
</form>
<script>
$G(window).Ready(function(){
new GForm("setup_frm","admin_save.php").onsubmit(doFormSubmit);
var create = new GForm("setup_frm","admin_create.php").onsubmit(doFormSubmit);
$G("create").onclick = function(){ create };
});
</script>
จะส่งค่าไปอีกไฟล์เมื่อคลิ๊กปุ่ม Create ยังไงครับ (แบบ gcms gajax)
.
.
<input type=hidden id=write_id name=write_id value=1>
<input type=submit class="btn save" value="Save">
<input id="create" type=button class="btn" value="Create">
</form>
<script>
$G(window).Ready(function(){
new GForm("setup_frm","admin_save.php").onsubmit(doFormSubmit);
var create = new GForm("setup_frm","admin_create.php").onsubmit(doFormSubmit);
$G("create").onclick = function(){ create };
});
</script>
จะส่งค่าไปอีกไฟล์เมื่อคลิ๊กปุ่ม Create ยังไงครับ (แบบ gcms gajax)
callClick('create', function(){
$E('setup_frm').submit();
});