TECHNOLOTREE
TECHNOLOTREE
  • Видео 9
  • Просмотров 1 560
Hide SharePoint List View Buttons
Hide command buttons on SharePoint List views such NEW ITEM or EDIT IN GRID VIEW
JSON BELOW:
{
"$schema": "developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json",
"commandBarProps": {
"commands": [
{
"key": "new",
"hide": true
},
{
"key": "editInGridView",
"hide": true
},
{
"key": "share",
"hide": true
},
{
"key": "export",
"hide": true
},
{
"key": "automate",
"hide": true
},
{
"key": "alertMe",
"hide": true
},
{
"key": "integrate",
"hide": true
},
{
"key": "manageAlert",
"hide": true
}
]
}
}...
Просмотров: 34

Видео

PowerApps Custom Connectors sending JSON DATA OR FORM DATA
Просмотров 782 месяца назад
Create custom connectors in PowerApps step by step. JSON data vs form-data
Use OLD DEVICE as secondary monitor. laptop, tab or phone
Просмотров 162 месяца назад
Use an old device such as a laptop or tab as a secondary monitor with the SPACEDESK software
LEARN TO WRITE CODE.
Просмотров 193 месяца назад
Always been fascinated by what coders to, learn to do it yourself by getting started with HTML, CSS and JavaScript.
Power Apps Impersonation using Power Automate for restricted data.
Просмотров 1025 месяцев назад
1. PowerApps display data from RESTRICTED ACCESS PAYSLIPS DATA SOURCE in SharePoint list. Only ADMIN account has access. 2. Using ADMIN IMPERSONATION within PowerAutomate to get data. 3. Email Address(or chat id for external account) used as unique ideintifier so correct list item for the logged in user is returned . 4. Return Get Items Results in Respond to PowerApps Action as a TEXT STRING 5....
Simplify Power Automate by AVOIDING Apply to each where possible, use expression instead.
Просмотров 185 месяцев назад
1. In Power Automate when using Get Items to knowingly return a single item 2. We try to AVOID nesting the follow up action for the items returned in an Apply to each action when a single item is returned 3. Use and expression instead: first(outputs('Get_items')?['body']?['value'])?['ID'] or outputs('Get_items')?['body']?['value'][0]?['ID']
Add Scripts, HTML and CSS tor SharePoint Online Modern Pages
Просмотров 5666 месяцев назад
⦁ 1. Ability to add js, html and css to SharePoint MODERN PAGES similiar to SharePoint CLASSIC SCRIPT EIDTOR WEBPART or linking a source to CLASSIC CONTENT EDITOR WEBPART ⦁ 2. Using the React-Cherry-Picked-Content SPFX solution, visit github.com/PathToSharePoint/React-Cherry-Picked-Content THANK YOU ⦁ 3. Setup ⦁ learn.microsoft.com/en-us/sharepoint/dev/spfx/set-up-your-development-environment ⦁...
Best Ever SharePoint / Power Automate Approval Workflow, Conditional Columns in form.
Просмотров 1916 месяцев назад
This solution is : 1. an Approval Workflow 2. that locks an item while it is been approved 3. will place the item in an editable state if rejected 4. keep the item locked if approved 5. hide/show columns that are not to be seen when item is being created context : Leave Request 2 users: ⦁ AS is the admin user ⦁ U is the normal user
Hide/Show field in a SharePoint list form depending on whether you are creating or viewing/editing
Просмотров 5379 месяцев назад
A solution for displaying/hiding a SharePoint list column based on whether you are creating a list item OR if you are viewing/editing a list item. This video does not cover the permissions aspect. Steps: 1. Create a conditional text column. This column must have a default value. 2. Create the column that must conditionally appear depending on whether a user is creating and item OR viewing/editi...

Комментарии

  • @erinryan5135
    @erinryan5135 8 месяцев назад

    Does this work when using content types on your list? I have not had any luck!

    • @TECHNOLOTREE
      @TECHNOLOTREE 6 месяцев назад

      What you could do is use dependency columns that are you unique to each content type, so you won't affect other content types in the list. I was unable to restrict a condition to a specific content type column(used in other content types) only on a list that has multiple content types unfortunately

  • @afaik190
    @afaik190 8 месяцев назад

    Finally, i thought searched the entire internet for this but i clearly didn't. Thanks upon Thnaks