0

我在 Alfresco Share 的数据列表中添加了一些新的过滤器。现在我希望在输入我的数据列表时默认选择我的一个新过滤器(而不是“全部”默认过滤器)。

我发现默认过滤器是在负责渲染数据列表的 YUI2 组件的构造函数中设置的:

/**
* DataGrid constructor.
* 
* @param htmlId {String} The HTML id of the parent element
* @return {Alfresco.component.DataGrid} The new DataGrid instance
* @constructor
*/


Alfresco.component.DataGrid = function(htmlId)
   {
      Alfresco.component.DataGrid.superclass.constructor.call(this, "Alfresco.component.DataGrid", htmlId, ["button", "container", "datasource", "datatable", "paginator", "animation", "history"]);
  // Initialise prototype properties
  this.datalistMeta = {};
  this.datalistColumns = {};
  this.dataRequestFields = [];
  this.dataResponseFields = [];
  this.currentPage = 1;
  this.totalRecords = 0;
  this.showingMoreActions = false;
  this.hideMoreActionsFn = null;
  this.currentFilter =
  {
     filterId: "all",
     filterData: ""
  };
  this.selectedItems = {};
  this.afterDataGridUpdate = [];

我已经将此组件扩展用于其他目的(以特殊方式呈现列等),现在我想将 this.currentFilter.filterId 更改为“活动”(这是我的新过滤器)。

这是您扩展类并覆盖方法的方式:

 // Extend default DataList...
  YAHOO.extend(Datalist.custom.DataGrid, Alfresco.component.DataGrid,
  {
    onFilterChanged: function CustomDL_onFilterChanged(layer, args)
    {
      // Call super class method...
      Datalist.custom.DataGrid.superclass.onFilterChanged.call(this, layer,args);
  // Pop-up a message...
  Alfresco.util.PopupManager.displayMessage({
    text: "Filter Changed!"
  });
}

}); })();

但是,我还没有找到覆盖类属性的方法,例如“this.currentFilter”,我只成功覆盖了方法。

我查看了 YUI.lang.augmentProto 和 YUI.lang.augmentObject 却没有真正理解如何去做。

4

1 回答 1

1

您可以覆盖属性的初始值,但它不会有太大的区别,因为它无论如何都会在构造函数中初始化,所以无论初始值可能是什么,它都会丢失。

您应该重写构造函数,就像 DataGrid 重写其基类的构造函数一样。调用原始构造函数,然后为属性设置一个新值。

于 2013-05-31T06:42:54.740 回答