我创建了一个自定义事件文档,用于扩展普通事件文档的字段。我添加了一个字段,可以在管道分隔列表中保留0到多个类别ID。类别存储在自定义表中。
这是我的过滤器代码:
public partial class CMSGlobalFiles_EventCategoryFilter : CMSAbstractDataFilterControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected override void OnInit(EventArgs e)
{
SetupControl();
base.OnInit(e);
}
protected override void OnPreRender(EventArgs e)
{
if (RequestHelper.IsPostBack())
{
setFilter();
}
base.OnPreRender(e);
}
private void SetupControl()
{
if (this.StopProcessing)
{
this.Visible = false;
}
else if (!RequestHelper.IsPostBack())
{
InitializeCategory();
}
}
private void InitializeCategory()
{
CustomTableItemProvider customTableProvider = ne CustomTableItemProvider(CMSContext.CurrentUser);
string where = "";
string tableName = "customtable.EventCategory";
DataClassInfo customTable = DataClassInfoProvider.GetDataClass(tableName);
if (customTable != null)
{
DataSet dataSet = customTableProvider.GetItems(tableName, where, null);
if (!DataHelper.DataSourceIsEmpty(dataSet))
{
this.drpCategory.DataSource = dataSet;
this.drpCategory.DataTextField = "CategoryName";
this.drpCategory.DataValueField = "ItemGUID";
this.drpCategory.DataBind();
this.drpCategory.Items.Insert(0, new ListItem("(all)", "##ALL##"));
}
}
}
private void setFilter()
{
string where = null;
if (this.drpCategory.SelectedValue != null)
{
Guid itemGUID = ValidationHelper.GetGuid(this.drpCategory.SelectedValue, Guid.Empty );
if (itemGUID != Guid.Empty)
{
where = "EventCategory LIKE \'%" + itemGUID.ToString() + "%\'";
}
}
if (where != null)
{
this.WhereCondition = where;
}
this.RaiseOnFilterChanged();
}
}
使用基本转发器和文档数据源,此过滤器效果很好。当我使用事件日历时,它没有。我正在使用Kentico版本6.0.30
答案 0 :(得分:1)
问题出在EventCalendar的不同生命周期中,基于CMSCalendar控件,该控件基于标准.Net日历。
首先,我们的开发人员发现了一种解决方法,并允许您的方案默认运行。此修复程序将包含在6.0.33修补程序中(计划于25日星期五发布)。 抱歉给您带来不便。
除了即将到来的修复之外,还可以通过修改(克隆)Web部件,将过滤器控件直接集成到Web部件中,并在DataBind之前设置日历的OnPreRender中的Where条件,使EventCalendar过滤其结果。如
protected override void OnPreRender(EventArgs e)
{
calItems.WhereCondition = "some filtering condition";
...
如果您可以修补您的CMS实例,那肯定会减少工作量。
此致
Zdenek / Kentico支持