摘要:
动态节点事件 $("#addPopuForm").on("click", '.del-card', function () { $(this).parent().remove(); }); 事件 focus 获取焦点事件 blur 失去焦点事件 hover 鼠标悬停事件 mouseleave 鼠标移 阅读全文
摘要:
{ field: 'title', title: __('标题'), formatter: function(value){ if(value.length > 20){ return value.toString().substr(0, 20) + '...'; }else{ return val 阅读全文
摘要:
commonSearch: false, visible: false, showToggle: false, showColumns: false, search:false, showExport: false, 阅读全文
摘要:
上传方法内设置 Config::set('default_return_type', 'json'); 阅读全文
摘要:
{field: 'url', title: __('Url'), formatter: Table.api.formatter.url}, 阅读全文
摘要:
{field: 'createtime', title: __('Createtime'), sortable:true, operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime}, 如上加 阅读全文
摘要:
{field: 'id', title: __('网站地址'), formatter: function(value, row, index){ return '<span data-url="//' + row["ip"] + ':' + row["port"] + '" ' + 'class=" 阅读全文
摘要:
在js文件中修改字段 {field: 'id', title: __('序号'), formatter: function(value, row, index){ return ++index; }}, 阅读全文
摘要:
首先在方法开始处开启关联查询 $this->relationSearch = true; //开启关联查询 然后在模型里面添加方法 public function adminInfo(){ return $this->belongsTo('Admin', 'uid', 'id', [], 'LEFT 阅读全文