or
internal static void HideEmptyHtmlTextBox(HtmlTextBox htmlTextBox, Telerik.Reporting.TextBox labelTextBox) |
{ |
if (htmlTextBox.Value == null || ((string)htmlTextBox.Value).Trim() == "") |
{ |
htmlTextBox.Visible = false; |
} |
if (!htmlTextBox.Visible && labelTextBox != null) |
{ |
Telerik.Reporting.Processing.ReportItemBase itemBase = ((Telerik.Reporting.Processing.ReportItemBase)htmlTextBox.Parent); |
Telerik.Reporting.Processing.TextBox label = (Telerik.Reporting.Processing.TextBox)itemBase.Items[labelTextBox.Name]; |
label.Visible = false; |
} |
} |
Hi...
Sir with ur tips i have benifited a lot..
Now i have doubt in set datasource as global for several reports.,
For example ., Now i am using more that 40 reports in my project .. for that reports i have create the datasource using
sqldataadapter from the tool box and passing parameters from the web forms., If i need to change the database means
at that time i need to change the datasource separately for all reports...
Next i need help for same doubt in the style sheet also... i need to design all reports separately .. but for standard report
i use external stylesheet but it is not working for me....
Yours
S.Suriya