Hi @codeworks ,
I'm assuming you are using gallery control here to edit grid.
So, if you want to disable the Save button for selected item add the following code on DisplayMode property of Save icon
If( ThisItem.IsSelected&&(IsBlank(TextInput2)||IsBlank(TextInput3)), DisplayMode.Disabled,DisplayMode.Edit)
In case you are not using any gallery, you can add validation to Save button like following
If(IsBlank(TextInput2)||IsBlank(TextInput3), DisplayMode.Disabled,DisplayMode.Edit)
else option could be if you want to make button editable, notify user a message if validation doesn't meet by adding following code on onSelect property of button
If(IsBlank(TextInput2)||IsBlank(TextInput3), Notify("Please fill required fields",NotificationType.Error),Patch(Datasource,Defaults(Datasource),{key:value}))
Hope this helps,
Please click Accept as solution if this helped you solve your issue. This will help others find it more readily. It also closes the item. Please consider giving it Thumbs Up.