0% found this document useful (0 votes)
6 views

Class Notes

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Class Notes

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

- Text Label - used to display readonly text to the user.

- Text Input - used to display as well as input text by the user

- Button - used to submit or navigate

- Radio Button - used to proivde multiple choices to the user and the user can
select only one choice from all the choices avaiable

- CheckBox - used to provide multiple choices to the user and the user can select
one or more thant one option

- DropdownButton - used to proivde a list of values to the user and the user can
select one value from the list

- DateTimePicker - used to select a date

- BackArrow - used to navigate to the previous page

Navigation:

* Navigate() - used to navigate to a specific screen

syntax: Navigate(Details)

* User() -- used to get user information

i. User().FullName - returns connected user full name


ii. User().Email - return connected user email address

* Now() - return current date and time

* Today() - return current date only

* Concatenate() - used for String Conatenation[comibning]

syntax: Concatenate(String1,String2,String3,....)

Concatenate("Welcome ",User().FullName," to Details Screen")

"Welcome " & User().FullName & " to Details Screen"

Welcome Pavan BJ to Details Screen

i. using '&'
ii. Concatenate()

* Text() - used to format the date to the required style

* Radio Button - used to provide list of choices to the user and allow the user to
select once choice from the set of choices available

items property will be used to proivde list of choices/values to the user

items = ["Male","Female"]

to get the selected value of the radio button


syntax: radiobuttonname.Selected.Value

ex: rdbtnGender.Selected.Value

ex: display selected gender in the textbox

set the Default property of the text box with radiobutton selected value

red- RGBA(255, 0, 0, 1)
green - RGBA(54, 176, 75, 1)
Orange- RGBA(255, 191, 0, 1)

if condition = used to check a condition and if it is true we will perform some


operation

syntax: if(condition1,st1,condition2,st2,condition3,st3,....)

If(rdbtnSignal.Selected.Value="Red",RGBA(255, 0, 0,
1),rdbtnSignal.Selected.Value="Green",RGBA(54, 176, 75,
1),rdbtnSignal.Selected.Value="Orange",RGBA(255, 191, 0, 1))

* Radio Button - used to provide list of choices to the user and allow the user to
select once choice from the set of choices available

* DropDown = It is used to provide a list of values to the user and allow the user
to select one value from the list of values avaiable

correct credentials
username = admin
password = powerApps

cascading dropdowns
to establish some kind of relation between the drop down controls

based on the value selected in the first dropdown automatically related


values will be displayed in the second dropdown

* checkbox : it is used to provide multiple options to the user so that the user
can select more than one option

Vertical gallery
data table

Notify("success",NotificationType.Success,1000)
If(TextInput1.Text<>TextInput2.Text, Notify("Error",NotificationType.Error,1000))
Notify("Warning",NotificationType.Warning,1000)

-----
Forms
- used to view, modify or enter data

type of forms:
1. Display forms - used to view the data
2. Edit forms - used to modify or enter new data

forms can interact with single record

You might also like