Can you please help me, how do I do a group footer textbox which value based on group header textbox value.
For example. if the headerGroup textbox value is an "A" then the footerGroup textbox value should be the sum of "A".
Thank you for you Help
Molivia
3 Answers, 1 is accepted
0
Peter
Telerik team
answered on 11 Feb 2010, 02:49 PM
Hi Molivia Sa,
If you want to assign a value to a textbox, you can do that in the code behind of the Report after the InitializeComponent()
Example:
this.textBoxFooter.Value = this.textBoxHeader.Value;
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.
I did exactly what you said . this is my coding, but its still displaying the blank value
if
(this.textBox2.Value == "Direct Deposit") -- this textbox is at the header group
{
this.textBox25.Value = "2222"; this textbox is at the footer group
}
Please help,
Thank you
0
Peter
Telerik team
answered on 15 Feb 2010, 10:34 AM
Hello Molivia Sa,
We're not sure if we understand correctly your inquiry, but If you are trying to set the value of the textbox in event you have to work with the processing report objects i.e.:
More information on definition vs. processing is available in Understanding Events help article.
Let us know if further help is needed.
Greetings,
Peter
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.