我在表格中使用x-editable。
当我点击进入单元格时,我可以从两个选项中进行选择: 现在和缺席。
如果没有将类添加到单元格中,是否可以将其添加到单元格中。
这是X-ediatble的JS:
<script type="text/javascript">
jQuery(document).ready(function() {
$.fn.editable.defaults.mode = 'inline';
$('.xedit').editable({
value: "-",
source: [
{value: "-", text: '-'},
{value: "Absent", text: 'Absent'},
{value: "Present", text: 'Present'}
]
});
$(document).on('click','.editable-submit',function(){
var key = $(this).closest('.editable-container').prev().attr('key');
var x = $(this).closest('.editable-container').prev().attr('id');
var y = $('.input-sm').val();
var z = $(this).closest('.editable-container').prev().text(y);
$.ajax({
url: "module/ppm2.php?id="+x+"&data="+y+'&key='+key,
type: 'GET',
success: function(s){
if(s == 'status'){
$(z).html(y);}
if(s == 'error') {
alert('Error Processing your Request!');}
},
error: function(e){
alert('Error Processing your Request!!');
}
});
});
});
</script>