- 13
- 5 398
TECHNOLOTREE
Приєднався 22 лис 2023
Software and stuff
OCR to SP Library
In this video, we’ll show you how to integrate Optical Character Recognition (OCR) into your SharePoint site using a custom SPFx WebPart. Learn how to automatically extract text from images and save that text directly into your SharePoint Image Library, making it easier to manage, search, and organize your content. Whether you're working with scanned documents or photos, this solution can help streamline your document management process.
📌 What You’ll Learn:
How to use SPFx WebPart to implement OCR in SharePoint
How to extract text from images automatically
Storing extracted text in SharePoint Image Library for easy access
Step-by-step guide for setting up this solution
💼 Need Expert Help with SharePoint, PowerApps, or Full Stack Development?
Our team offers professional consulting services to help you get the most out of your SharePoint and PowerApps platforms. We provide end-to-end solutions including custom development, business analysis, and project management. Whether you're looking to streamline your business processes or build custom applications, we’re here to help!
👉 Contact us today to learn how we can assist with your next project: info@110consulting.co.za
🔔 Don't forget to like, comment, and subscribe for more SharePoint tips and tutorials!
📌 What You’ll Learn:
How to use SPFx WebPart to implement OCR in SharePoint
How to extract text from images automatically
Storing extracted text in SharePoint Image Library for easy access
Step-by-step guide for setting up this solution
💼 Need Expert Help with SharePoint, PowerApps, or Full Stack Development?
Our team offers professional consulting services to help you get the most out of your SharePoint and PowerApps platforms. We provide end-to-end solutions including custom development, business analysis, and project management. Whether you're looking to streamline your business processes or build custom applications, we’re here to help!
👉 Contact us today to learn how we can assist with your next project: info@110consulting.co.za
🔔 Don't forget to like, comment, and subscribe for more SharePoint tips and tutorials!
Переглядів: 36
Відео
PowerApps Gallery Item Numbered Rows / Ranking | Example User Score-Based Ranking from Test Results
Переглядів 1082 місяці тому
UA-cam Video Description: In this tutorial, I walk you through a PowerApps solution for adding numbered rows or ranking users based on their scores in a test. Using ClearCollect, ForAll, and conditional logic, I show you how to: Rank users based on their scores from highest to lowest. Manage collections for user rankings and scores. Dynamically update rankings using the Max function and conditi...
SharePoint Accordion(Menu Links) Multi-Level/Nested - Webpart - FULL DEPLOYMENT
Переглядів 1362 місяці тому
Note: default styling has been added to the webpart but you can still add custom css file find solution on github.com/afaik-peace/AccordionNestedSPFX/tree/main For custom solutions email info@110consulting.co.za. Transform your website’s content presentation by creating multi-level nested accordion/links menu with link to files, pages and external sites using SharePoint document library. Add yo...
SharePoint Accordion(Menu Links) Multi-Level/Nested - Webpart
Переглядів 5233 місяці тому
Note: default styling has been added to the webpart but you can still add custom css file find solution on github.com/afaik-peace/AccordionNestedSPFX/tree/main If you prefer the sppkg file ready to install webpart, please email info@110consulting.co.za. Transform your website’s content presentation by creating multi-level nested accordion/links menu with link to files, pages and external sites ...
Hide SharePoint List View Buttons
Переглядів 3524 місяці тому
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 }, { ...
PowerApps Custom Connectors sending JSON DATA OR FORM DATA
Переглядів 3106 місяців тому
Create custom connectors in PowerApps step by step. JSON data vs form-data
Use OLD DEVICE as secondary monitor. laptop, tab or phone
Переглядів 197 місяців тому
Use an old device such as a laptop or tab as a secondary monitor with the SPACEDESK software
LEARN TO WRITE CODE.
Переглядів 258 місяців тому
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.
Переглядів 2729 місяців тому
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.
Переглядів 4010 місяців тому
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
Переглядів 2,5 тис.10 місяців тому
⦁ 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.
Переглядів 24510 місяців тому
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
Переглядів 926Рік тому
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...
I needed this , thanks a lot
Will it work on sp2019?
Great video! Thank you! 👍
Hi, thank you for this video. this what i needed. can you help with how to make setting for: Users can only see their own input data, can see each other user. thank you
Does this work when using content types on your list? I have not had any luck!
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
Finally, i thought searched the entire internet for this but i clearly didn't. Thanks upon Thnaks