configAppTree: function (oArrayData){
		$('#appTree').treeview({
          color: "#545454",
          expandIcon: 'glyphicon glyphicon-chevron-right',
          collapseIcon: 'glyphicon glyphicon-chevron-down',
          nodeIcon: 'glyphicon glyphicon-bookmark',
          data: oArrayData,
          onNodeSelected: function (event, data) {
              oGrid.setAppGridData(data);
              oGrid.getTreeSelections = data;
            }
        });
        if (oArrayData !=undefined && oArrayData.length > 0) {
          var nodeId = 0;
            $('#appTree').treeview('selectNode', [nodeId, { silent: true }]);
            oGrid.setAppGridData(oArrayData[0]);
            oGrid.getTreeSelections = oArrayData[0];
          }
        },

 

相关文章:

  • 2021-09-07
  • 2021-08-21
  • 2022-12-23
  • 2022-12-23
  • 2021-12-15
  • 2022-12-23
  • 2021-08-10
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-02-28
  • 2022-12-23
  • 2021-06-27
  • 2022-12-23
  • 2021-11-22
相关资源
相似解决方案