Hi All,
I have an urgent requirement to complete below task,
In my app, i am using cascade drop down, textbox and combobox.
source & Datastoring in sharepoint and using gallery to view / edit existing entry and add new entry.
so previous / existing entry selection is working fine in drop down and textbox using this code "Thisitem.Task"
but in combo box default value is not coming properly also true false text box will perform based on combobox selection value so each time combobox is expecting to select values but i dont want to select for the existing entry.
Anyone help me to fix this problem.
ComboBox details:
Items : Distinct(AccountNameLookup,'Account Name')
Defaultselecteditems: ForAll(Filter(AccountNameLookup,
'Account Name'=ThisItem.ClientName
),
ThisItem.ClientName
)
Displayfields: ["Result"]
InputTextPlaceHolder: ThisItem.ClientName
SearchFields: ["Result"]
SelectMultiple : false
Default:
Based on this combobox selection , hidden truefalse textbox and onedropdown have to select appropriate value automatically but for the first time selection its working fine but for view / edit for the previous entry combo box .selected.result is empty.
Thanks in advance.