I’ve found out that we can fix this issue by adding two fields to the CommonViewFields property of the CQWP:
DocumentIconImageUrl and OnClickForWebRendering, like this:
<property name="CommonViewFields" type="string">DocumentIconImageUrl, Text;OnClickForWebRendering,Text </property> |
Other work around:
Create WebPart inherit the CQWP and add an extra column to the resulting table containing data:
public class AnonWorkingContentByQueryWebPart : ContentByQueryWebPart { protected override void OnInit(EventArgs e) { this.ProcessDataDelegate = ProcessItems; } protected virtual DataTable ProcessItems(DataTable data) { DataColumn column = new DataColumn("OnClickForWebRendering", typeof(string)); data.Columns.Add(column); return data; } } |
I prefer first solution
No comments:
Post a Comment