Search found 20 matches

by harryf75
Sat Jul 01, 2017 1:19 pm
Forum: Stimulsoft Reports.JS
Topic: Fail load js files in single page application
Replies: 4
Views: 2364

Re: Fail load js files in single page application

tuxwars wrote:I already found the problem, the js stimulsoft does not work with moments js
Works för me...
by harryf75
Thu Jun 29, 2017 12:57 pm
Forum: Stimulsoft Reports.JS
Topic: Bug: CSS Bug with Designer and Viewer
Replies: 14
Views: 7190

Re: Bug: CSS Bug with Designer and Viewer

Hello HighAley,

please tell me if I can help.

At the company where I work I currently have not source access to the Stimulsoft libraries. I had an Ultimate Subscription before but this is gone now.

If you want please give me source access. I am more then willing to help your.

Thx.

Harry
by harryf75
Thu Jun 22, 2017 7:17 pm
Forum: Stimulsoft Reports.JS
Topic: Change file name before a save
Replies: 8
Views: 5967

Re: Change file name before a save

I wrapped the whole Designer into my own panel.

In my software I have system default report. The user can have a "Copy of..." report and also rename the report. And I have a rename method.
by harryf75
Thu Jun 22, 2017 7:13 pm
Forum: Stimulsoft Reports.JS
Topic: Bug: CSS Bug with Designer and Viewer
Replies: 14
Views: 7190

Re: Bug: CSS Bug with Designer and Viewer

Thank you ;) I had the feeling of becoming crazy. Because CSS and PDF has indeed zero depencency ... at last in my mind. Please also confirm that you can reproduce the 2nd issue. If this CSS is set WrapLine in TextFields behaves odd. If you paste text in the TextField it's formates from Top to Botto...
by harryf75
Thu Jun 22, 2017 9:23 am
Forum: Stimulsoft Reports.JS
Topic: Change file name before a save
Replies: 8
Views: 5967

Re: Change file name before a save

At last from my knowlege only this works.

Did you try saving the hook and calling it? This might works...

var old = designer.onSaveAsReport;
designer.onSaveAsReport = function (e) { // or onSaveReport
this.designer.report.reportName="My Cool Name"; // sets the report name...
old();
};
by harryf75
Wed Jun 21, 2017 10:06 pm
Forum: Stimulsoft Reports.JS
Topic: Change file name before a save
Replies: 8
Views: 5967

Re: Change file name before a save

You can add a onSave/onSaveAs Hook: https://admin.stimulsoft.com/documentation/classreference-js/classes/stimulsoft.designer.stidesigner.html#onsavereport var designer = new Stimulsoft.Designer.StiDesigner(options, "StiDesigner", false); designer.onSaveAsReport = function (e) { // or onSav...
by harryf75
Wed Jun 21, 2017 9:57 pm
Forum: Stimulsoft Reports.JS
Topic: Bug: CSS Bug with Designer and Viewer
Replies: 14
Views: 7190

Re: Bug: CSS Bug with Designer and Viewer

Hello guys,

can you please confirm that with my reproduce list?

It will take you 4 minutes - it took me 2 days to find this bug ;)

Thank you.
by harryf75
Mon Jun 19, 2017 11:23 am
Forum: Stimulsoft Reports.JS
Topic: Bug: CSS Bug with Designer and Viewer
Replies: 14
Views: 7190

Re: Bug: CSS Bug with Designer and Viewer

Hello HighAley, i add no custom font in any way! The first post was terrible wrong!!! Steps to reproduce: 1) Checkout https://github.com/stimulsoft/Samples-JS 2) Edit File "Samples-JS/Angular2/01. Working with report designer/src/index.html" 3) Add style="display: flex; flex-direction...
by harryf75
Sun Jun 18, 2017 2:36 pm
Forum: Stimulsoft Reports.JS
Topic: Bug: CSS Bug with Designer and Viewer
Replies: 14
Views: 7190

Re: Missing Fonts in Desingers generated PDF

Some crazy little other bug. When setting

style="display: flex; flex-direction: column;"

the word wrap in TextFields doesn't work. The text will be placed not wrapped but in single letters top down.
by harryf75
Sat Jun 17, 2017 3:02 pm
Forum: Stimulsoft Reports.JS
Topic: Bug: CSS Bug with Designer and Viewer
Replies: 14
Views: 7190

Re: Missing Fonts in Desingers generated PDF

Ok what seams to work is to remove the CSS class from the body that has this style set and add it again after the report ist closed...