Ширина столбца не применяется к плагину таблицы jstree - PullRequest
0 голосов
/ 19 мая 2018

Я использую jstree с плагином таблицы.Ширина столбца 250 не применяется к столбцам «Цена» и «Кол-во».Я дал ширину столбца как 250 для столбцов «Цена» и «Кол-во», но я не получаю применение.Можете ли вы помочь в этом.

$("div#jstree").jstree({

  core: {
    data: data
  },
  plugins: ["table","dnd","contextmenu","sort","search"],
  search: {
      case_insensitive: true,
      show_only_matches: true
    },
  // configure tree table
  table: {
    columns: [
      {width: 200, header: "Name", format: function(v) { return "<i>"+v+"</i>"}},
      {width: 250, value: "price", header: "Price", format: function(v) {if (v){ return '$'+v.toFixed(2) }}},
      {width: 250, value: "quantity", header: "Qty"}
    ],
    resizable: true,
    draggable: true,
    contextmenu: true,
    width: 900,
    height: 300
  }
});

Вот скрипка.

http://jsfiddle.net/shmyusuf/56mxp4ov/3/
...