Skip to main content

Posts

Showing posts from 2016

Popup error in Web Process Designer regarding SPARK theme

The may not be the best help but worth to verify if the right theme is selected J https://support.salientprocess.com/forums/topic/spark-ui-toolkit-theme-settings-with-ibm-bpm-8-5-7/   Other work around to remove the popup are : close the Client Side Human Service (CSHS) and open it again to see if the new theme is reflecting in designer reload the Web Process Designer, as often when we change theme in Process App Settings, Web PD is unable to reflect the new theme styles in the active instance and it need to be reloaded to reload the updated theme styles in Process Designer. Regards, Saroj

How to use dojo.query to filter out few unwanted elements

Ever had scenario where you use a dojo.query to get the list of elements with some specific class but then realized you need to ignore few more elements from the result but cannot as those elements also have the same class defined. No problem you can modify your query string to add the not function and pass in the new unique class which only these controls have. Not able to find any unique class, no issues, you can manually assign one custom class and use it in the query. I encountered this requirement while working in IBM BPM Coaches but this is not specific to BPM instead it's a pattern for dojo query. So here is an example of filtering the controls using the class names in the dojo.query dojo.query(".CPP") gives me the list of all the interactive controls in the page. But I don't want the button controls and my button control has another class as "Button" to my modified query will be dojo.query(".CPP:not(.Button)") This query will list all the e...

How to pass parameter to function while calling it in spark controls

This is extension to the article of Creating Custom Functions in Spark UI Toolkit. It don't have option to explain how to define the function with real input parameter and invoke it with data. To understand how to Create Custom Function in Spark, please refer this  link. Here I'll explain how to define the function with real input parameter (not the control input) and how to invoke it with the data. It's the normal way of writing any parameterized function in custom HTML (Advanced control) in IBM BPM, like openLink(control, val) {//code here;}. Screenshot below. In this you can see I'm using val variable to get the input and deciding the link to open based on it's value. The suggested way to call the function in spark on any control event is like @openLink() as shown below.   But this will not pass any value. Interestingly as per the explanation in the Spack help, it pass the control reference in the function. and you can't try the combinations of passing the e...

Using Link Button control of SPARK UI Toolkit in BPM 8.5.7

One of the missing control from IBM BPM 8.5.7 Responsive Coaches components is the Link control. To achive this we need to create our custom control and use it or if you have Spark UI Toolkit, then you can use the Link control. The control has two use types: URL and Boundary Event. Link as URL: You can set the Link Type behavior to URL and provide the inline URL or bind the variable having valid URL. By default the URL link will open in new window. If you want to replace the existing window, you can check the option Open in Same Window. Link as Boundary Event: You can also use the Link control to inact as button and can define the navigation flow in the service. For this you need to set the Link Type as Boundary Event. No need to provide any URL as it'll anyway ignore it. Now you can draw the sequence line for the Link control and have your flow and code in place.  But interesting part to do here is check the Open in Same Window . If you don't enable this check box, in IE11 the...

Great links to learn IBM BPM User Interface in 8.5.7

Hello friends, As we all know IBM has started putting efforts to improve it's BPM coaches to make it more rich and responsive. It's a good time to learn the basics about the coach design and learning the basics about it. Below are few links which will help to understand the BPM coach designing. 5 Things to Know about Designing IBM BPM User Interfaces

Localised Calendar in BPM 857 using Spark Date Picker

I found a way to get the Swedish calendar and its easy one time effort Following is the steps to get any localised calendar. The steps is to achive the Swedish version of calendar. 1. Extend the ‘Resource Bundle Group’ called CONTROLS to add “svenska (Sverige,Euro)” localization. 2. Duplicate I18N Service (ajax service) to use modified CONTROLS. 3. Enable the I18N option in the Date Picker to use the locale. 4. Add 'Configuration' control in the coach and use the I18N service from step 2. Note: We can set our locale by Edit Profile in Process Portal.               Cheers, Saroj

BPM task failed at end event

I had the scenario, where the task (or activity) with Client-side human service (CSHS) in BPM 8.5.7 was failing. The CSHS was completing successfully on standalone run, but it was failing when used in the process, not letting the flow to move to next task. After spending some time I realized it may the issue of the private variables whose data type was (unavailable), as I copied the CSHS from another process app and copied only those data types which was used in coach UI. The moment I deleted those variables with unavailable datatypes, the process task also finished successfully :) Learning: 1. Find any variables with unavailable data type 2. either remove them if unused (in my case) or you need to define (or copy) the required data type. Cheers, Saroj