เขียน function js สำหรับสร้าง modal div ไว้ครับ
ให้รับ parameter id ที่จะใช้เช็คว่า จะแก้ไข หรือสร้างข้อมูลใหม่ครับ
Comcept Ex. Code (JavaScript)
function callModal(ids)
{
if(ids=='')
{
//create empty div modal -> append to <body> and call $("#your-modal-id").modal("show");
}else{
//use ajax call data for edit
//create empty div modal -> append to <body>
//assign value to modal's input
//call $("#your-modal-id").modal("show");
}
}