(...) ntroduction The SharePoint Framework extensions are client-side components that work in the context of a SharePoint page. They can be implemented in a SharePoint Online environment and you can use Javascript tools and libraries to create them. This article presents the methods for starting WEBCON BPS workflows from the SharePoint library by using the “ListView Command Set” extension. &n (...)
(...) nguage on the form. The HTML form field can be defined as adding a custom HTML code to the standard code of the WEBCON BPS form. The best solution is to use this form field with the new form rules in Javascript mode. Form rules in Javascript mode have been enhanced with the following function: MoveToNextStep – go through the path InvokeMenuAction – invoke the menu button InvokeRule (...)
(...) al Prepare Processes for being organized into Applications Remove all connections to SharePoint by reconfiguring the application and enabling the WEBCON BPS Modern form display mode: Change Javascript to the form rules or Javascript consisting of the available editor functions while maintaining the logic of the Modern form Switch data sources and SharePoint libraries to dictionary processes or (...)
(...) so the blue square must be selected Unchecking the visibility of the form field also deletes the markings in the green and red squares The green square may be set in the intermediate mode – Javascript edit mode Remember that the form field should never be marked both required and read-only at the same time Fig. 7. The form – Start step Below there is the des (...)
Applies to version 2020.1.3; author: Michał Kastelik This article shows you how to automatically create a new SharePoint site with just one click from a WEBCON BPS form. If you want to learn about other out-of-the-box actions that use your SharePoint content in WEBCON BPS, go here. We will show the configuration on a free WEBCON application that you can download from here: Investments
(...) heme. The ADFS login page is divided into sections you can see on the screenshot: Fig. 3 ADFS login page sections Each section can be edited with PowerShell, CSS styles, or Javascript . We recommend that you start your customization by making a copy of the default theme, and then we will walk you through the steps to modify it to suit your needs. In PowerShell, use (...)
(...) o track all modifications that impact the visual layer. This functionality toggles a diagnostic mode in WEBCON BPS Portal, which registers all invocations on the form, i.e., form rules, Javascript , editability, visibility restrictions, etc. (see full list below). Diagnostic mode is activated in the user menu by selecting the "Show diagnostics" option. All WEBCON BPS Portal users have (...)
Applies to version 2020.1.x and 2021.1.x, author: Krzysztof Gawczyk Introduction This article explains how to create and configure reports in WEBCON Designer Studio and on Portal. You can configure various views for your reports to present data (e.g., use charts, tables). It is also possible to create one report with all tasks, and views for each step. In this article, you will learn ho
(...) hich the created solutions will be more understandable, less sensitive to change and, consequently, more reliable. Use of Tags Tags are elements used to create expressions (SQL, CAML, Javascript ) as well as Business Rules and Form Rules. The tag represents a specific value of a specific object in the system, e.g. the value of an attribute. Tags in the case of SQL and CAML are in the form (...)
(...) ation: Another common use of global constants is a situation where on two different environments two separate databases are used. Global constant can also have a Javascript function declared, which can be used in the form’s behavior. Below you can see configuration of this kind of variable: Then in form behavior choose: This a (...)
(...) ent must be obtained. After setting the form field, you should investigate whether the Microsoft Graph Toolkit library is loaded before displaying the form field on the form. WEBCON BPS provides a Javascript function that can be used to load the library, e.g. in the Form Rule. Calling this function looks, as follows: GraphToolkit.loadGraphToolkit() Creating the HTML form field &nb (...)
(...) i.e. visibility of the “Total” form field and the ability to place form fields in different form tabs. The form field in the “Read-only (cannot be modified except by Javascript )” In the example discussed above, the “Total” form field, where the result of the arithmetic operation is presented, is configured as “Visible” in the “Field (...)
(...) away. Also, provide alternative text for images so that the message context is not lost if images do not display. Be cautious with background images as support for them is not universal. 7. Avoid Javascript : Most email clients do not support Javascript due to security reasons, so relying on any scripts to modify your email dynamically will likely not work as intended. 8. Character Encoding: Always sp (...)
(...) trick. However, from a user experience perspective, it would be great if the open file dialogue would only show pdf's: How is it done: Add a Html-Field to the form Add the following Javascript : <script> var attr = document.createAttribute('accept'); attr.value=".pdf"; document.getElementById("fileupload-add").setAttributeNode(attr); </script> Don't forget to se (...)
(...) ch Internet Applications) is a set of attributes and techniques to improve accessibility and user interaction with dynamic content, such as web applications. ARIA extends the capabilities of HTML and Javascript by adding new attributes that more accurately describe user interface elements, their roles, properties and states for people using assistive technologies. The objective here was to enhance the Po (...)
External content by Daniel Krüger; July 06, 2024 ; The original post has appeared on daniels-notes.de WEBCON BPS 2024 introduced different kind of form templates: While this is great for WEBCON BPS 2024 users. You can already achieve something similar with a little HTML field in previous version. You could even make it dynamic. If one tab needs a lot of
(...) External content by Daniel Krüger; September 01, 2024 ; The original post has appeared on daniels-notes.de While the original post with the Javascript function to display "All attachments" on page load is almost three years, this was only now updated to optionally collapse the the attachments. Thanks for the request. :) The linked blog post also contains a small documen (...)
(...) range. You can then increase/decrease the value by using the arrow up/down keys. This can be achieved by the following steps: Create a global Form rule, switch the Edit mode to "Javascript mode" and add the following Javascript window.nxWebcon = window.nxWebcon || {}; nxWebcon.integerRange = nxWebcon.integerRange || {}; nxWebcon.integerRange.initialize = function(form (...)
(...) to trigger an action after uploading or modifying a document? I’m not sure about you, but we recently faced this exact challenge. After some quick research, we came up with a relatively simple Javascript function that triggers a 'Save' button click when an attachment is added or modified. Of course, the function can be adjusted according to specific needs. The Javascript function needs to (...)
(...) External content by Karol Częczek; October 21, 2024; If you need to manage and change the order of items added to the list, you can achieve this by adding your editable ID column and Javascript code. A short video shows the end result of the modifications added to the list. To begin with, we add 2 columns: ID and T_ID, of type Floating-point number to the list, set them as defau (...)