As of version 2.8, SSL certificate and access over HTTPS were mandatory for the client. Added redirection for HTTP requests. ATTENTION: WEB.CONFIG requires update. Rewrite lines must be copied. Also, URLrewrite extention must be installed on IIS.
Installing URL Rewrite extension : URL Rewrite : The Official Microsoft IIS Site
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="HTTPS force" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
In order to use the Xpoda Addons in your workflows, the "C# library" option is used by changing the Sql Server field in the query field of the Db Query object.
Added Page Size parameter for performance improvement in list element.
In the Right Panel option has been added to the Condition field in Open Form actions.
The newly added feature can be used in the new tab used in the form open actions, like the options in the new window, with the option on the right panel.
With a new form option to be opened on the right panel, it will be possible to easily access the desired forms.
A disable typing parameter has been added in Date and Datetime elements to allow selection with only buttons and to prevent data entry from outside.
You can now keep your print designs in the database. To switch to this use, you need to make the following updates on your system:
1- Execute the following SQL statement:
CREATE TABLE [dbo].[XPODA_REPORT_FILES](
[ReportID] [int] IDENTITY(1,1) NOT NULL,
[CustomerID] [int] NULL,
[ReportTitle] [varchar](100) NULL,
[FileData] [ntext] NULL,
[FormID] [int] NULL,
CONSTRAINT [PK_XPODA_REPORT_FILES] PRIMARY KEY CLUSTERED
(
[ReportID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
2- Run the following SQL statement:
ALTER TABLE XPODA_GENERAL_SETTINGS ADD ReportStorage NVARCHAR(20) NULL
GO
3- Login to Xpoda Client Admin and update the following setting as "Database":
When a new module is wanted to be created, when it is desired to continue by loading a module from the file, the button to continue did not appear on the screen, this problem has been resolved.
The height of the combobox element is displayed at the height specified in the studio, and the data selected in multi-selection takes up as much space as the text.
When the form opened in the Open Form (Linked) action was opened in a new tab (when Condition = In New Tab), the left menu and header fields were not displayed. In the development made, the left menu and header sections were also provided in the form.
Actions that affect multiple fields, such as clear content, change properties, are not displayed in the linked action section.
The action used to search the treelist element was causing the appearance of the element to deteriorate.
In the new version to be updated, the default search panel feature has been added when the treelist element is used.
With this development, when you switch to the new version, you will be able to do the search you need with the default search panel in the treelist element.
Messages given using the Show Message action would disappear from the screen after a certain period of time. In the development, the display time can be adjusted according to the Display Time(milliseconds) value added to the relevant action. This value should be written in milliseconds. The value 3000 must be entered for the message to be displayed for 3 seconds.
A new action for sending meeting requests added. You can create meeting requests automatically and send them to participant list.
Please refer documentation link below for details.
Running the Subflow element;
It is the process of starting a new flow (sub-flow) in the flow and progressing the flow accordingly. Substreams allow you to design your streams in a modular way. A stream can have multiple substreams.
For details, you can get information from the link below:
The problem that the graphic is displayed when the graphic element is placed in the 2nd tab in the responsive form, has been fixed.
In order for the Selection box Multi element to be used horizontally or vertically in responsive forms, the vertical field in the properties of the element has been enabled to work actively.
Custom references can be added in DLL addon development.
Previously it was as follows. This limitation has been removed. In this way, Addon developers can manage their dependencies themselves.
"The NuGet package or the libraries added as a reference while developing the .NET Class Library may be the libraries supported by Xpoda. Please click to access the list of them."
Public Forms were previously displayed with a gray frame similar to Xpoda Client. In the form opened as a public form, these styles were removed and a simpler look was provided. In addition, in Embed uses, the height of the page is dynamically adjusted according to the content of the form.
While creating a public form, the language selection can be made from the public form modal window.