1

我正在使用 fullcalendar-scheduler-5.3.0。

我的事件和资源来自 json url:

resources: {
    url: "content/exe/json_load_bm_ressourcen_v2.php"
  }, 

资源区定义:

resourceAreaColumns: [
    {
      headerContent: 'Betriebsmittel',
      field: 'title',
      width: 360
    },
    {
      headerContent: '',
      field: 'status',
      width: 40,
      cellDidMount: function(arg) {
        var resource = arg.resource;

        arg.el.addEventListener('click', function() {         
          
          res_id = resource.id.substring(0, 1); 
          var parentId = arg.resource._resource.parentId;
          dep_id = parentId;            
          console.log(dep_id);

          if(res_id != 'd'){
            console.log('User RES ID ' + res_id);
            console.log('User RESOURCE ID ' + resource.id);
            //edit_wpl(resource.id);          
          }
        });
      }
    }
  ],

例子:

[{ 
"id": "d1",
"sort_id":"1",
"title": "Leitern/ Gerüste",
"children": [
{
    "id": "374",
    "title": "Alu-Klappgerüst, Günzburger ",
    "status": "<i class='fal fa-fw fa-times-circle text-danger'></i>",
    "datum_anfang":"1602453600"
  }
]}]

我想在资源列表的第二行中显示字段“状态”中的图标。但我只在这个领域得到清晰的 html。

有什么建议么?

4

0 回答 0