I have a canvas app which has a gallery "glyApproveQuotation" that show items from a sharepoint list, when an item is selected a button with the following formula navigate to another screen
Switch(
LookUp(
glyApproveQuotation.AllItems, ID = selectedItemID).AnalysisClass,
"DNA", Navigate('DNA Analysis Overview', ScreenTransition.UnCoverRight, { QuoteSelected: LookUp(
glyApproveQuotation.AllItems, ID = selectedItemID) }),
"RNA", Navigate('RNA Analysis Overview', ScreenTransition.UnCoverRight, { QuoteSelected:
Notify("Class not recognized", NotificationType.Error)
);
the item selected is thenstored in a variable selectedItemID, when navigating to the other screen the controls "Text, dropdown and combobox" display the items selected, all the control shows the items selected with the following formula
If(
except the dropdown which display nothing "just blank"
I set the default property of a dropdown as follow
Default = If(IsBlank(QuoteSelected), "", QuoteSelected.RicGroup)
the SharePoint column in the case of the dropdown is of type singlle line of text
from the screenshot where the arrows are pointing it shows the group "Ric.Tonon" in the Default property pane but the control is blank
The dropdown depends on a Text label and a combobox, the dropdown shows the groups the selected user "from the combox " belong to, it could blank in case the user doesn't belong to any group, or 1-6 option to select from
the schema has to be closely tied to schema of the item property of the item property, the item property has this formula of DataType table
the dropdown Items=
Filter
The dropdown default with this formula which is of data type text
Default = If( IsBlank(QuoteSelected), Blank(), QuoteSelected.RicGroup )
The dropdown depends on to two controls, a combobox and and Text control,
the Variables in the dropdown control are defined in a combobox the Onselect property
OnSelect =
The combobox item property show this formula to search users.
Item =
Text = If(
Please Advice
Mogahid


Report
All responses (
Answers (