BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Query |
Response |
Upon further testing, I found that creating an action to invoke another report does not work. In the report designer, nothing happens when I click the text box on which I have created the action and no error is thrown. On the report server, the proper HTML is not emitted so nothing happens when I click on the link.
|
A support incident to track the status of this defect has been created under your account. Please log on to our support website to check for further updates.
|
Also I'm somewhat confused by the limited access to the fields of my dataset. It appears that I only have access to the First(...) expression. Will this give me access to the correct row when the report is generated or is there some other method for access row specific data? |
The data set field collection can be access based on the scope where we are using the expression. In some locations of a report, you must specify a scope. For example, for a text box on the design surface, you must specify the name of the dataset to use:
=First(Fields!Sales.Value,"Dataset1") . In other locations, there is an implicit default scope. For example, if you do not specify an aggregate for a text box in a tablix group scope, the default aggregate First is used. Please refer the online documentation to know more about data scope in expressions. https://msdn.microsoft.com/en-in/library/dd255256.aspx |