We're reviewing your suggestion from the overall roadmap perspective. For now, I'm changing the status accordingly.
We're reviewing your suggestion from the overall roadmap perspective. For now, I'm changing the status accordingly.
This case is already address and will soon be available in one of the newer releases. I'll update the post once I know the exact release number.
This should be fairly easy to do. It goes straight into the backlog.
We're reviewing the situation as it's a bit more intricate than you described. We'll update this tread whenever a decision is reached.
Hi Damian,
while it's great that you put together all the related posts, I just want to point out that the development support for WEBCON BPS 2023 will end in three months:
https://community.webcon.com/posts/post/webcon-bps-development-support-policy/520/10
Therefore I highly doubt, that anything will be changed for an older version.
Besides this, there's a complete new mobile application which doesn't use this kind of configuration. This was replaced by a simple QR Code which the users can scan simply scan:
https://docs.webcon.com/docs/2024R1/MobileApp
Best regards,
Daniel
Hi Damian, I sustain what Daniel said. We are not planning on investing in further development of BPS Mobile 2022. It can be pushed via Intune, however without user profiles.
With that said, we're focusing on the future development of our current solutions.
Hi,
we can display the first attachment on page load.
Unfortunately, this only works if the attachment is not displayed as a popup.
Even if the documentation is updated to mention this different behavior. I find it counter intuitive that this should be a different
Instead of changing the current way, I would prefer a form rule which can be used to display an attachment in the preview. This way we wouldn't be limited to the first attachment but could get the attachment to display with a business rule or similar.
Best regards,
Daniel
Hi Daniel,
have you used the features in version 2023? It looks like the definition of the item list has changed. The current content returns an ‘unknown error’
Hi,
meanwhile I'm using a little workaround and the Acceptance functionality (still in Version 21, but I hope it will persist).
I create a data source, where I check for each line of the items list in this instance for a certain condition (in this case "book = 1") in an IIF statement and as result I get the actual users name or a dummy user.
Using this data source for the acceptance criteria it has the following effect:
For each line with the "positive" result it will set a user (dummy) that is different to the actual user and thus the acceptance function is hiding the row.
For each line with the negative result it will set the actual user, thus the line is visible to whoever is working on this instance.
<code>
SELECT IIF({DCNCOL:2444} = 1, 'exdom1\webcon', '{I:CURRENTUSER}') AS colmn
FROM dbo.WFElementDetails INNER JOIN
dbo.WFElements ON dbo.WFElementDetails.DET_WFDID = dbo.WFElements.WFD_ID
WHERE (dbo.WFElements.WFD_ID = {WFD_ID}) AND (dbo.WFElementDetails.DET_WFCONID = {WFCON:8075})
AND (dbo.WFElementDetails.DET_ID = {S:DET_ID})
</code>
Kind Regards,
Klaus
Hi Klaus,
you could use the following as an alternative:
1) Create a form rule with edit mode JavaScript mode
2) Add a parameter
Use this code and replace the PARAMETER with yours.
setTimeout(function(){
debugger;
var itemListId = PARAMETER.id
var row = $("tr[data-index='"+uxContext.currentRowNumber+"']",$("#SubElems_"+itemListId ))[0]
row.style = "display:none;";
},250);
3) Create another rule where iterate about the rows and call the other form rule, if the condition applies.
4) This will hide all rows, which match the conditions.
Remarks:
- The timeout is necessary, because at the time of executions the item list rows are not visible.
- This won't work if the item list is in collapsed group/other tab
- I changed the naming of the field from visible to hidden so the screenshot don't match up
I wouldn't use this option, but disable those cells/style the rows, so that the users see them, but know that there is nothing left to do. This can be achieved with the default functions options.
Best regards,
Daniel
Hi Daniel,
have you used the features in version 2023? It looks like the definition of the item list has changed. The current content returns an ‘unknown error’