WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question
Home > Forum > Latest posts

latest posts

Hello,

I have a little problem. My scenario is something like this: I have an item list, with 3 columns A, B(not important here) and C and I want to disable column C(data row), if column A(choice field) has value 1#Mother, for example. Even if it's a new row just added by the user at that moment, even if it's a row added previously by other user in another step.. I just simply want that column C to be "enabled" only for a certain condition.

What I did, I followed the steps from this thread https://community.webcon.com/forum/thread/2646. But seems that for me it doesn't do the correct thing.. What am I doing wrong?

Thank you!

I would like to create messages in Teams channels and 1:1 chats automatically through WEBCON. Unfortunately, I get the error that delegated permissions and no application permissions are required for sending (intended for migration purposes only).

I have already implemented the connection using MS Graph and the associated application permission as follows:
https://community.webcon.com/posts/post/integrating-ms-teams-with-ms-graph/53/4

Microsoft Learn Documentation: https://learn.microsoft.com/en-us/graph/api/chatmessage-get?view=graph-rest-1.0&tabs=http

Unfortunately, I have no idea how to implement the delegated permissions in WEBCON. Does WEBCON authentication have to be implemented via Azure AD (Entra ID) so that the user's token is available? We are currently using our local AD.

Does anyone have any experience here and can help me further?

Many thanks in advance and best regards
Marc

In reply to: Martin Meze (Freelancer)

Hi Maria,

Please check the attached images and see if that helps. Come back with additional questions if you will have any.

The javascript functions can be inserted in a HTML field, enclosed in the <script> tag.

Best regards,
Martin

Hi. Thank you for help!

I have one more question regarding of execution of multiple functions.

If I have the following code, which performs two updates to some columns, then executes InvokeMenuAction (which involves some REST APIs or SQL procedures), and finally I would like to delete that row using the DeleteRow function... but the row doesn't get deleted...
What exactly happens when you press the button: it runs the JavaScript functions, it seems like it would delete the row, but until the actions from the menu action are executed, the row reappears.
Do you know why it does that? Is it possible to delete the row at the end?
The method I've been thinking of is to perform the action of changing item list values in the menu action as well.



select
'<div class="subelements-action-button">
<button class="webcon-button standard-focus subelements-action-button__delete-row webcon-button--padding-small standard-focus webcon-button--icon-button no-background th-hover" tabindex="0" type="button" onclick="UpdateRow1({BRP:59}); UpdateRow2({BRP:59}); setUpdated({BRP:59}); InvokeMenuAction({ACB:36}); DeleteRow({BRP:59}) " data-tooltip="Update">
<i class="icon ms-Icon ms-Icon--Accept ms-Icon--standard" aria-hidden="true" data-disabled="false"></i>
</button>

</div>'