Hi,
I have a text input "Txt_Ip_Data" and save button on same page. There is already a code written for onselect of save button which perform some other actions.
The text input is present in the gallery. I have a sharepoint list in which there is a column of input.
I am doing below task:
If a particular column in sharepoint list displays text then in gallery text input "Txt_Ip_Data" appears.
If this text input "Txt_Ip_Data" is empty, We should disable the save button popup. Only when all text input "Txt_Ip_Data" is filled with value then save button should be enabled.
I am writing below code in displaymode of save button-
If(
LookUp(Gallery_Check_List_Details.AllItems,Equipment_Name=Var_Eqp_Selected_Cond,Check_Type) = "Input" And (IsBlank(Txt_Ip_Data.Text)),DisplayMode.Disabled,
DisplayMode.Edit)
but this code is working only when all text input "Txt_Ip_Data" in gallery items is empty. If even a single text input "Txt_Ip_Data" is filled with value, the save button is getting enabled.
Save button should be enabled only when all text input "Txt_Ip_Data" are filled with values.
Please guide.