Skip to main content
Skip table of contents

Edit: Group

Tag: SelectedEditGroup

The SelectedEditGroup function automates the action of modifying the information of selected groups in the grid.


XML
<SelectedEditGroup>
	<SetParam Field="groupDisplayName" Value="Operations"/>
	<SetParam Field="description" Value="This is an operations group"/>
	<SetParam Field="privacy" Value="Private - Only members can see group content"/>
</SelectedEditGroup>


Tag Attributes

AttributesAttribute Value
KeepAliveTRUE (Keeps dialog open) / FALSE - Defaults to FALSE
To set a boolean/toggle fieldTRUE sets it to ON, anything else sets it to OFF
To set a LIST fieldUse one of the strings as it appears in the list (case insensitive)
To set a DATE fieldUse ISO format YYYY-MM-DD (Without time or any other decoration)

Set Param

  • Type
  • GroupDisplayName
  • description
  • Privacy
  • MailNickname
  • AllowExternalSenders
  • AutoSubscribeNewMembers
  • ActivateGroupUnifiedGuestSetting
  • AllowToAddGuests

Detailed Description

SelectedEditGroup opens the Edit dialog to assign a new group value to groups selected in the grid. It does this by using the SetParam actions you set for each user.

A grid selection is still required, just as it's required if using this function manually.


To set a boolean/toggle field: TRUE sets it to ON, anything else sets it to OFF.

toogle-field-true-sets-it-to-on


To set a LIST field, use one of the strings as it appears in the list (case insensitive):


list-field-select-an-option


To set a DATE field, use ISO format YYYY-MM-DD (without time or any other decoration).

groups-edit-selected


  • Type
  • GroupDisplayName
  • description
  • Privacy
  • MailNickname
  • AllowExternalSenders
  • AutoSubscribeNewMembers
  • ActivateGroupUnifiedGuestSetting
  • AllowToAddGuests

Example Script

XML
<ytriaAutomation Application="sapio365">
	<OnError Continue="true"/>
	<Select lines="ByValue">
		<SetParam ColumnID="displayName" Value="Alphabet"/>
	</Select>
	<SelectedEditGroup>
		<SetParam Field="groupDisplayName" Value="Operations"/>
		<SetParam Field="description" Value="This is an operations group"/>
		<SetParam Field="privacy" Value="Private - Only members can see group content"/>
	</SelectedEditGroup>
	<SaveSelected/>
</ytriaAutomation>
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.