Search found 12 matches

by Stéphane
Mon Feb 15, 2021 2:39 pm
Forum: Stimulsoft Reports.WEB
Topic: Trailing spaces
Replies: 3
Views: 1043

Re: Trailing spaces

There is no need to have data. In the report in attachment, I only put a StiText with the text "There should be a space after the colon : ". This trailing space is never rendered.
by Stéphane
Tue Feb 09, 2021 3:14 pm
Forum: Stimulsoft Reports.WEB
Topic: Trailing spaces
Replies: 3
Views: 1043

Trailing spaces

I have one trailing space in the Text property of a StiText. When the report is rendered, this trailing space is removed. I tried to set the option StiOptions.Engine.MeasureTrailingSpaces to true, but it doesn't change anything (I use the latest version). If I put two trailing spaces, then, the two ...
by Stéphane
Wed Nov 27, 2019 12:09 pm
Forum: Stimulsoft Reports.WEB
Topic: StiText background color based on datacolumn
Replies: 1
Views: 872

StiText background color based on datacolumn

Hello,

I have a datacolumn (an argb int value or a HTML string color code). In my databand, I would like to set the background color of my StiText according to this data column. How can I do this ? (I use Stimulsoft Reports.Web for ASP.Net Core).

Cordially,
Stéphane.
by Stéphane
Tue Jun 25, 2019 8:25 am
Forum: Stimulsoft Reports.NET
Topic: Nuget and localization files
Replies: 1
Views: 953

Nuget and localization files

Hello, How can we easily update the localization files corresponding to a version of a Nuget package ? We can't find a Nuget package for each language, so we must copy the localization files manually. That is not very practical (we often forget to update the localization files when we update the Nug...
by Stéphane
Thu Oct 11, 2018 12:36 pm
Forum: Stimulsoft Reports.WEB
Topic: Client side save as packed report
Replies: 1
Views: 850

Client side save as packed report

Hello,

With Reports.Web .NET Core HTML5 designer, is it possible to indicate to save the report as a packed report when saving reports on the client side ?

Cordially,
Stephane.
by Stéphane
Wed Oct 10, 2018 1:04 pm
Forum: Stimulsoft Reports.WEB
Topic: DisplayAttribute of an enum value
Replies: 3
Views: 1458

Re: DisplayAttribute of an enum value

Here is a sample project in attachment. Without modifying my business object, I would like to show the display attributes ("En cours" and "Annulé") instead of the enum values (Pending, Closed).
by Stéphane
Mon Oct 08, 2018 8:50 am
Forum: Stimulsoft Reports.WEB
Topic: DisplayAttribute of an enum value
Replies: 3
Views: 1458

DisplayAttribute of an enum value

Hello, In Stimulsoft.Reports.Web .NET Core, I register my data with the report.RegBusinessObject method. There is a property of enumeration type in my business object. I would like to get the value of the DisplayAttribute instead of the enum value. What's is the best way to do it (without modifying ...
by Stéphane
Fri Oct 05, 2018 3:38 pm
Forum: Stimulsoft Reports.WEB
Topic: New report at startup
Replies: 1
Views: 853

New report at startup

Hello, In Stimulsoft.Reports.Web .NET Core with HTML5 designer, how can I indicate that the report created at startup (with the GetReport action) is a new empty report ? I would like to have the save dialog with the filename when the user clicks on the save button (like with a new report). Cordially...
by Stéphane
Thu Feb 15, 2018 11:34 am
Forum: Stimulsoft Reports.WEB
Topic: Show designer - Error 500 - Internal Server Error
Replies: 3
Views: 2405

Re: Show designer - Error 500 - Internal Server Error

As it worked with your sample solution, I continued to search in my code. I found the problem, it was a side effect of my method to get the json data. I updated this method and it works great now.
Thanks for the quick answer.
by Stéphane
Wed Feb 14, 2018 7:03 pm
Forum: Stimulsoft Reports.WEB
Topic: Show designer - Error 500 - Internal Server Error
Replies: 3
Views: 2405

Show designer - Error 500 - Internal Server Error

Hello, I'm evaluating Stimulsoft.Reports.Web.NetCore. I'm only trying to open the designer : @Html.StiNetCoreDesigner(new StiNetCoreDesignerOptions() { Actions = { GetReport = nameof(DesignerController.GetReport), DesignerEvent = nameof(DesignerController.DesignerEvent) } }) public IActionResult Get...