I defined a form in a report, assigned OK dialog result to a button. In designer HTML preview it goes from the form to report. The form is also visible when using Web Report Viewer (really cool), but pressing the button does nothing. Why?
Btw, is there any comprehensive documentation for Reports.Web and or Web Report Designer?
Lukasz
Forms in Web reports
Forms in Web reports
Hi Łukasz.
Here is requirements on using dialogs inside Web page:
1) StiWebViewer.RederMode must be AjaxWithCache or UseCache.
2) Code of rendering report must be in any other place but not in PageLoad event of the WebPage. You can place this code for example inside the ButtonClick event.
3) Dialogs will work in web only when StartMode property in Dialog Form is set in 'OnStart'
If these three requirements are satisfied, then your report will work with dialogs in Web environment.
Documentation for Stimulsoft Reports.Web designer and Stimulsoft Reports.Web are in the development process.
Thank you.
Here is requirements on using dialogs inside Web page:
1) StiWebViewer.RederMode must be AjaxWithCache or UseCache.
2) Code of rendering report must be in any other place but not in PageLoad event of the WebPage. You can place this code for example inside the ButtonClick event.
3) Dialogs will work in web only when StartMode property in Dialog Form is set in 'OnStart'
If these three requirements are satisfied, then your report will work with dialogs in Web environment.
Documentation for Stimulsoft Reports.Web designer and Stimulsoft Reports.Web are in the development process.
Thank you.