Search found 131 matches

by FrenkR
Tue Feb 14, 2017 10:48 am
Forum: Stimulsoft Reports.WEB
Topic: drag-drop from additional list
Replies: 8
Views: 3563

Re: drag-drop from additional list

perfect, thanks :)
by FrenkR
Thu Feb 09, 2017 7:52 pm
Forum: Stimulsoft Reports.WEB
Topic: drag-drop from additional list
Replies: 8
Views: 3563

Re: drag-drop from additional list

basic template inside "aspx" file: <div id="templateViewer" class="panel"> <div style="position:relative;top:10px;left:10px;width:60px;height:25px;overflow:hidden;" class="stiDesignerTreeItemButtonSelected_Mouse">Drag me</div> <div style="positi...
by FrenkR
Thu Feb 09, 2017 6:34 am
Forum: Stimulsoft Reports.WEB
Topic: drag-drop from additional list
Replies: 8
Views: 3563

Re: drag-drop from additional list

current application has defined "text" layout with bands. To easily (re)design a template in a stimulsoft reporter, I would like to create "helper" custom panel with fields as they are defined in an existing report. This panel should have "drag" capability. So, fields f...
by FrenkR
Tue Feb 07, 2017 9:00 pm
Forum: Stimulsoft Reports.WEB
Topic: drag-drop from additional list
Replies: 8
Views: 3563

drag-drop from additional list

Hi, using latest MobileDesigner, MobileViewer. I implemented additional panel with list of some labels on it(helpers when creating a report). I would like to implement drag-drop functionality from this panel to a report in a way that is implemented from dictionary to report. Can you help me with a s...
by FrenkR
Fri Dec 23, 2016 1:40 pm
Forum: Stimulsoft Reports.WEB
Topic: Drilldown problems?
Replies: 7
Views: 2400

Re: Drilldown problems?

any timeline?
by FrenkR
Thu Dec 22, 2016 9:32 am
Forum: Stimulsoft Reports.WEB
Topic: Drilldown problems?
Replies: 7
Views: 2400

Re: Drilldown problems?

version 2016.3.0.0:
"Stimulsoft.Report.Mobile" (StiMobileViewer)
"Stimulsoft.Report.MobileDesign"(StiMobileDesigner)
by FrenkR
Thu Dec 22, 2016 8:17 am
Forum: Stimulsoft Reports.WEB
Topic: Drilldown problems?
Replies: 7
Views: 2400

Re: Drilldown problems?

sorry, 2016.3, latest patch
by FrenkR
Wed Dec 21, 2016 11:50 pm
Forum: Stimulsoft Reports.WEB
Topic: Drilldown problems?
Replies: 7
Views: 2400

Drilldown problems?

Hi, I did basic test of "drilldown" interaction functionality. I created 2 pages, page1 and page2. On page1, I added "report title band" component and put "text" component on it. Then I set "text" component interaction property "Drill-down enabled" a...
by FrenkR
Mon Dec 19, 2016 12:47 pm
Forum: Stimulsoft Reports.NET
Topic: HTML export via code without <head> tag
Replies: 1
Views: 960

HTML export via code without <head> tag

Hi,
is there any setting for html export that doesn't generate "head" tag(just <body> tag)? Exported HTML will be used inside WYSIWYG editor like TinyMCE.
by FrenkR
Thu Dec 15, 2016 4:37 pm
Forum: Stimulsoft Reports.WEB
Topic: Reading variable value in "RenderedPages.PageAdded" event
Replies: 3
Views: 1943

Re: Reading variable value in "RenderedPages.PageAdded" even

both works:

Code: Select all

report["myVariable"]
// or
report.CompilerReport["myVariable"]
Thank you :)