This is a migrated thread and some comments may be shown as answers.

Crosstab withing table row

1 Answer 57 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Jelena Nahaja
Top achievements
Rank 1
Jelena Nahaja asked on 24 May 2011, 01:05 PM

Telerik.Reporting.Processing.Table tblCrosstab = (Telerik.Reporting.Processing.Table)sender;
FairDataList = null;
 
var tbl_EEEEE_STUDENT_ID = tblCrosstab.DataObject["EEEEE_STUDENT_ID"];
 
if (strEEEEE_STUDENT_ID != null)
{
    if (_objCrosstab != null)
    {
        if (tbl_EEEEE_STUDENT_ID!= null && tbl_EEEEE_STUDENT_ID.ToString() == strEEEEE_STUDENT_ID)
        {
            FairDataList = _objCrosstab.GetFAIRDataDetailK2_1(this.ReportParameters["SchoolYear"].Value.ToString(),
                                                            this.ReportParameters["District"].Value.ToString(),
                                                            this.ReportParameters["School"].Value.ToString(),
                                                            this.ReportParameters["Grade"].Value.ToString(),
                                                           strEEEEE_STUDENT_ID);
 
 
            if (FairDataList.Count > 0)
            {
                if (tblCrosstab.DataSource == null)
                {
 
                    tblCrosstab.DataSource = FairDataList;
                }
 
            }
        }
    }
}

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 27 May 2011, 10:20 AM
Hello Jelena,

Based on the code snippet and the screenshoot we are not sure what is your question (and whether there is a question). If you still experience any difficulties please provide more information.

Regards,
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
Tags
General Discussions
Asked by
Jelena Nahaja
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or