you help me.
how to number the report?
eg: (Order column)
Order Name Date
1 Tai 10/6/1999
2 Tuan 12/1/2000
3 Thu 2/2/1999
4
5
...
Thank!
Hello Tai,
We have moved your post from Windows Forms group to Reporting group.
Unfortunately, the table control does not have a build-in functionality to display row numbers.
Instead, I suggest you create a dummy column in your data source that has the row number and bind it to your table.
Thank you,Mihoko Kamiishi
You have posted under Windows Forms forum, but Infragistics Reporting is a different product. The product has already been retired, so please try posting your question under Retired Products and Controls.
Thank you, Mihoko Kamiishi
Thank you very much Mihoko Kamiishi.
but, I want to do it in reporting (Infragistics reporting), does Infragistics reporting support this issue?
Waiting for your reply
Are you using UltraGrid from Infragistics Windows Forms?
If so, it has a functionality to display row numbers on each row.
The below is the example.
ultraGrid1.DisplayLayout.Override.RowSelectors = DefaultableBoolean.True;
ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = RowSelectorNumberStyle.VisibleIndex;
Please take a look at the following document for more details:
Displaying Row Numbers in Row Selectors
www.infragistics.com/.../wingrid-displaying-row-numbers-in-row-selectors
Let me know if I may be of further assistance.
Thank you,
Mihoko Kamiishi