c# - Telerik Reports Table view duplicated -


hi using telerik report view generate report.

all good, have mapped data data source , report looks great in design view.

enter image description here

but when view in preview pane duplicates table x times number of rows have returned.

enter image description here know why ?

you have duplicate table cause datasource bound page item.

so lets quick. 2 solutions , choose one!

  1. use gui apply filter on table.

    filter on unique data. :

    =fields.myfield_id_xyz     =    =reportitem.dataobject.myfield_id_xyz      
  2. in code behind :

    this.table2.filters.add(         new telerik.reporting.filter(         "= fields.myfield_id_xyz"         , telerik.reporting.filteroperator.equal         , "=reportitem.dataobject.myfield_id_xyz"          )); 

this prevent duplication of table.

filtering on reportitem.dataobject.myfield_id_xyz, current row of detailsection.


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -