NiNTEX FORMS GISPUG 7/26/2017.

Slides:



Advertisements
Similar presentations
Week 10 Creating Positioned Layouts
Advertisements

Web Pages Week 10 This week: CSS Next week: CSS – Part 2.
1 Cascading Style Sheets Continued Different kinds of selectors in a style sheet –Simple- Pseudo-Class –Contextual- Pseudo-Element –Class Image Styles.
Chapter 6 More CSS Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Layout using CSS. Using multiple classes In the head:.important{font-style:italic;}.title{color:red;} In the body: Here's a type of paragraph that is.
Murach's PHP and MySQL, C1© 2010, Mike Murach & Associates, Inc.Slide 1.
Session 4: CSS Positioning Fall 2006 LIS Web Team.
With CSS, a color is most often specified by: a HEX value - like "#ff0000" an RGB value - like "rgb(255,0,0)" a color name - like "red“ Example h1.
Diliev.com & pLOVEdiv.com  DIliev.com.
CSS normally control the html elements. Three Ways to Insert CSS There are three ways of inserting a style sheet: External style sheet Internal style.
Tutorial 5 Working with the Box Model. XP Objectives Understand the box model Create padding, margins, and borders Wrap text around an image Float a block-level.
Basics of Web Design Chapter 6 More CSS Basics Key Concepts.
Basics of Web Design Chapter 6 More CSS Basics Key Concepts 1.
SharePoint 2010: BCS m Business Connectivity Services.
Virtual techdays INDIA │ 9-11 February 2011 No Code SharePoint Development using SharePoint Designer 2010 Roshan N.Y │ Consultant, Microsoft.
1 CS428 Web Engineering Lecture 10 Images, Tables, Forms, Border-Radius (CSS – V)
Web Design Transparent Backgrounds. Why : Allow text to appear clearly above a graphic background image that still can be seen in the background. Without.
Reza Alirezaei, MOSS MVP/MCTS
©2012 Microsoft Corporation. All rights reserved. Content based on SharePoint 15 Technical Preview and published July 2012.
Tulsa SharePoint User Group TulsaSPUG. Agenda Introductions (5 Minutes) Branding Review (25 Minutes) Site Overview (5 Minutes) Office 365 Provisioning.
COLORS & BACKGROUNDS CHAPTER 13. SPECIFYING COLORS Three common places where you specify color 1.Text color.box { color: blue; } 2.Background color.box.
By Tuyet Le & Madhura Pitale. Seating Chart with CSS3.
Agenda Principal Consultant, SharePoint Development Team Lead John Ramminger Linked In:
©2012 Microsoft Corporation. All rights reserved. Content based on SharePoint 15 Technical Preview and published July 2012.
 Word doc for you to download › Link at the beginning of class › 10 Questions › Answers to be added inline  Post to Sakai when completed › No resubmits.
CHAPTER 3 CSS & CSS3 อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
Log In to your User Start: Photoshop Elements. Start a new document 700x120 pixels with white background. Create a new layer by clicking Layer -> New.
COMP213 – Web Interface Design
Macromedia Studio 8 Step-by-Step MACROMEDIA FIREWORKS 8 Project 2: Experience Bank Logo.
Internet Technology Dr Jing LU Updated Dr Violet Snell / Dr Kalin Penev 1 Internet Technology (week 6)  Recap: Validating HTML  Page Layout.
11/12/2015 Box Model Reed Crouch. 11/12/2015  HTML elements can be considered as boxes. In CSS, the term "box model" is used when referring to layout.
Web Design (12) CSS Introduction. Cascading Style Sheets - Defined CSS is the W3C standard for defining the presentation of documents written in HTML.
Copyright © Osmosys O S M O S Y SO S M O S Y S D e p l o y i n g E x p e r i e n c e & E x p e r t i s e™ CSS Training.
 Open Photoshop with picture  Add a new blank layer and call it “Template”  Select the Rectangular Marquee tool with Style: Fixed Aspect Ratio in the.
Stylizing a Navigational Menu Web Design Section 6-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
Tutorial #5 Working with the Box Model. Tutorial #4 Review - CSS Create a homework page Final Project Discussion Exam on Blackboard Styling Lists (List-style-type,
CSS (Cascading Style Sheets). CSS CSS – Cascading Style Sheets – Cascade because of the way CSS rules can stack on top of each other. Allows you to add.
CSS.
PowerShell 101 sharepoint on-premise
Laying out Elements with CSS
The Box Model in CSS Web Design – Sec 4-8
The Box Model in CSS Web Design – Sec 4-8
Greater Idaho SharePoint User Group
CSS3 Style of the HTML document CSS2+New Specifications Differences
Tutorial 4 Topic: CSS 3.0 Li Xu
Advanced CSS & CSS3.
The Box Model in CSS Web Design – Sec 4-8
Web Systems & Technologies
Chapter 6 More CSS Basics Key Concepts
FOREGROUND COLOR h1 { color: DarkCyan;} h2 { color: #ee4e80;} p { color: rgb(100, 100, 90);} The three traditional ways to specify colors: Color name.
Style Sheet Create a new CSS called Cameras.CSS TD Web Authoring
Cascading Style Sheets
Table CSS Create a new CSS called tablestyle.CSS Green Background
4 Visual Elements and Graphics.
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
CSS Borders and Margins.
Positioning.
Cascading Style Sheets
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
Cascading Style Sheets Color and Font Properties
استاد:مهندس زمانیان ارائه دهنده:پونه موسوی تاریخ: 1392/4/5
Pop Out Photo Effect Gimp tutorial.
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
SharePoint Permissions Manager
SEEM4570 Tutorial 3: CSS + CSS3.0
Nov. 28 Topics.
Start: Photoshop Elements
Principles of Web Design 5th Edition
Positioning.
Transitioning Opacity
Presentation transcript:

NiNTEX FORMS GISPUG 7/26/2017

Scott Krahn Started sharepoint in 2008 Started Nintex in 2014 Lead sharepoint developer @ Packaging corporation of America Farm admin 15% Blog: https://snickershare.wordpress.com

Overview Integration into sharepoint Forms on sharepoint lists Forms on Nintex workflow tasks Forms on Nintex live Designer interface DEMO Resources/ tools

Integration: central administration

Sharepoint lists

Task Forms

Nintex live (external/ anonymous forms)

DEMO

RESOURCES/ TOOLS Attachment validations FORMS BEST PRACTICES On www.gispug.org under Past presentation materials TESTING FORMS – LOGGING IN AS ANOTHER USER: [ROOTSITEURL]/_layouts/closeconnection.aspx?loginasanotheruser=true Pixel Ruler CSS to float validations on right @keyframes fadeIn  {    from {opacity: 0;}    to {opacity: 1;}} .nf-validation-summary{     z-index:9;    position: fixed;     top: 200px;     width: 280px;     right: 15px;     background-color: white;     border: 2px solid red;     border-radius:10px;     box-shadow:  3px 3px 15px 15px rgba(50, 50, 50, 0.6);     animation: fadeIn 2s;} Attachment validations https://community.nintex.com/message/37086

Q&A Thank you