Employee Onboarding App part 2

Поділитися
Вставка

КОМЕНТАРІ • 16

  • @ModernCloudSolutions
    @ModernCloudSolutions Рік тому +1

    Excellent video - thank you!

  • @pngtrips6846
    @pngtrips6846 2 роки тому +1

    awesome really like your video

  • @mccaskillt10
    @mccaskillt10 Рік тому +1

    This is so helpful - THANK YOU! Quick question, how did you get the OnFailure and OnSuccess ribbons to change colors to green and red?

    • @OptimalTrainingGroup
      @OptimalTrainingGroup  Рік тому +1

      If you are referring to the notify(), depending on if it's success, failure or warning, they have their own respective colors by default. I don't think it can be changed.

  • @pallabmiun
    @pallabmiun Рік тому +1

    Hej, Thanks for tutorial. But i cannot add NewForm(Form) with submit form. Is there any thing else i need to do.

    • @OptimalTrainingGroup
      @OptimalTrainingGroup  Рік тому

      What is the name of your form? Is it 'Form1', 'Form2', etc.? Or did you change the name to something else?

  • @archiesay3105
    @archiesay3105 Рік тому +1

    Man, i am struggling. I Followed your video to the letter to create a new hired form in PowerApps. However, I am getting an error "Network error when using Patch function: Field 'Author' is required" when I run the app and click on submit. I went to Edit Field in PowerApps and added the "Author" field and made it required but still no luck. Can you please help?

    • @OptimalTrainingGroup
      @OptimalTrainingGroup  Рік тому

      Hi, your Author field must be a People picker column. To patch to a people picker use the claims like so
      Patch(HRList,
      Defaults(HRList),
      {
      Author:{
      Claims: Concatenate(
      "i:0#.f|membership|",
      User().Email
      ),
      Department: "",
      DisplayName: User().FullName,
      Email: User().Email,
      JobTitle: "",
      Picture: ""
      }
      }
      })
      Note: All 6 attributes (Claims, Department, DisplayName, Email, JobTitle, Picture) are needed to match a people column.
      Hope that helps and makes sense.

  • @savithanair9837
    @savithanair9837 Рік тому +3

    For me onsucess is not displaying it is coming required can't be empty can I know y

    • @brandonmakhudu8688
      @brandonmakhudu8688 Рік тому

      Hello did you solve this challenge ?

    • @OptimalTrainingGroup
      @OptimalTrainingGroup  Рік тому

      Sorry for the late response. Did you click on the form name in the left panel. Every Form has a property called OnSuccess. Hope that helps.

    • @stupidshits7569
      @stupidshits7569 Рік тому

      @@OptimalTrainingGroup I am encountering the same problem. On the specific form, is still display the required cant be empty. Followed everything but still displaying required cant be empty on both onsuccess and onfailure. hope will get an answer or solution. thanks

    • @stupidshits7569
      @stupidshits7569 Рік тому

      even though the required field are already filled up it still displaying the onfailure notification

    • @OptimalTrainingGroup
      @OptimalTrainingGroup  Рік тому

      @@stupidshits7569 What is saying required can't be empty? Is it a control in the form?

  • @UgandharSanjam
    @UgandharSanjam Рік тому

    Hi, This video very helpful, but I am using same senario its FAILED for me. Please help on this.