I'm using Telerik Q2 2009 Reporting
I want to calculate a count(*) via oql.
I want to use detail itemdatabound of a group footer.
I want to put the result in a textbox I've added in the footer.
I tryed everything but always I got an error,
For example:
My textbox is called txtIdCommessa, but I try also with:
and i've got an error.
Is it possibile to set value in the event of section
also the command:
I want to calculate a count(*) via oql.
I want to use detail itemdatabound of a group footer.
I want to put the result in a textbox I've added in the footer.
I tryed everything but always I got an error,
For example:
Telerik.Reporting.Processing.
DetailSection section = sender as Telerik.Reporting.Processing.DetailSection;
Telerik.Reporting.Processing.
ReportItem commessaItem = (Telerik.Reporting.Processing.ReportItem)section.ChildElements.Find("txtIdCommessa", false)[0];
My textbox is called txtIdCommessa, but I try also with:
Telerik.Reporting.
DetailSection section = sender as Telerik.Reporting.DetailSection;
Telerik.Reporting.
TextBox commessaItem = (Telerik.Reporting.TextBox)section.Items.Find("txtIdCommessa", false)[0];
and i've got an error.
Is it possibile to set value in the event of section
also the command:
txtConteggioUtenze.Value =
"Test";
does not print nothing.
Can anyone suggest me the object to use to handle the value of a text box or the event to use ?
do I have to use the item events to manage their values ?
I'm attaching also the report.cs to have support