是否有自定义搜索结果模板的选项?

Is there any options for customizing search results template?

我需要自定义 BALKANGraph OrgChartJS 搜索结果的默认模板。我在哪里可以找到自定义模板的解决方案?

BALKANGraph 开发者在这里

您可以使用 CSS

自定义搜索结果

您也可以通过定义 mySearchUI class:

实现自己的搜索结果 ui
var mySearchUI = function () {
};

mySearchUI.prototype.init = function (obj) {
    this.obj = obj;
};

mySearchUI.prototype.hide = function () {

};

mySearchUI.prototype.show = function (callback) {

};

mySearchUI.prototype.addSearchControl = function () {

};

mySearchUI.prototype.find = function (value) {

};

var chart = new OrgChart(document.getElementById("tree"), {
    nodeBinding: {
        field_0: "name"
    },
    nodes: [
        { id: 1, name: "Amber McKenzie" },
        { id: 2, pid: 1, name: "Ava Field" },
        { id: 3, pid: 1, name: "Peter Stevens" }
    ],
    searchUI: new mySearchUI()
});