Skip to main content

Posts

Showing posts from December, 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...