Posts

Download ebook Head First jQuery

Download ebook Head First jQuery Book Description Want to add more interactivity and polish to your websites? Discover how  jQuery  can help you build complex scripting functionality in just a few lines of code. With Head First jQuery, you'll quickly get up to speed on this amazing  JavaScript  library by learning how to navigate  HTML documents while handling events, effects, callbacks, and animations. By the time you've completed the book, you'll be incorporating Ajax apps, working seamlessly with HTML and CSS, and handling data with PHP, MySQL and JSON. If you want to learn - and understand - how to create interactive web pages, unobtrusive script, and cool animations that don't kill your browser, this book is for you. Book Details Publisher: O'Reilly Media By: Ryan Benedetti ,  Ronan Cranley ISBN: 978-1-4493-9321-2 Year: 2011 Pages: 544 Language: English File size: 68.9 MB File format: PDF Download ebook Head First jQuery

Download ebook Use Case Driven Object Modeling with UML

Download ebook Use Case Driven Object Modeling with UML Book Description Use Case Driven Object Modeling with UML: Theory and Practice shows how to drive an object-oriented  software   design  from use case all the way through coding and testing, based on the minimalist, UML-based ICONIX process. In addition to a comprehensive explanation of the foundations of the approach, the book makes extensive use of examples and provides exercises at the back of each chapter. This book leads by example. It demonstrates common analysis and design errors, shows how to detect and fix them, and suggests how to avoid making the same errors in the future. Book Details Publisher: Apress By: Doug Rosenberg ,  Matt Stephens ISBN: 978-1-59059-774-3 Year: 2007 Pages: 472 Language: English File size: 12.3 MB File format: PDF Download ebook Use Case Driven Object Modeling with UML

PROJECT SERVER TECHCENTER VIDEOS

Learn about Project Server. There are lots of videos which can teach you how to work with Project Server. Click here to watch online videos Click here to watch more online videos

HTML5 & CSS3 Fundamentals: Development for Absolute Beginners

HTML5 & CSS3 Fundamentals: Development for Absolute Beginners Want to learn a different language? Over the course of 21 episodes, our friend Bob Tabor will teach you the fundamentals of HTML5 & CSS3 programming. Tune in to learn concepts about web pages, CSS3 styles and HTML5 features. We'll walk you through getting the web principals, writing code and much more! Each concept is broken into its own video 

Office 2013 Quick Start Guides

Image
Do you want to learn Office 2013 ?  Check this link. You will get Quick Start Guilds for MS Office 2013.  you can download free Quick Start Guides from Microsoft. These printable guides contain useful tips, shortcuts, and screenshots to help you find your way around. http://office.microsoft.com/en-us/support/office-2013-quick-start-guides-HA103673669.aspx

SQL Integrity Check

SQL Integrity Check **NEW TOOL** Identifies SQL Server database corruption Initiate Checks  - easily run a CHECKDB for any database on-demand Identify Corruption  - view integrity check results to identify corruption Verify Last Check  - routinely verifies when last check was performed Automatic Notification  - receive alerts when databases are due for checks Save time  – no need to write and maintain scripts Download SQL Integraty Check

Download ebook - jQuery Hotshot

Download ebook - jQuery Hotshot Ten practical projects that exercise your skill, build your confidence, and help you master jQuery Book Description jQuery is used by millions of people to write  JavaScript  more easily and more quickly. It has become the standard tool for web developers and designers to add dynamic, interactive elements to their sites, smoothing out browser inconsistencies and reducing costly development time. jQuery Hotshot walks you step by step through 10 projects designed to familiarise you with the  jQuery  library and related technologies. Each project  focuses on a particular subject or section of the API, but also looks at something related, like jQuery's official templates, or an HTML5 feature like localStorage. Build your knowledge of jQuery and related technologies. Book Details Publisher: Packt Publishing By: Dan Wellman ISBN: 978-1-84951-910-6 Year: 2013 Pages: 296 Language: English File size: 4 MB File format: PDF Download ebook - jQuery Hotshot

10 jQuery snippets for SharePoint 2010

A good post which let you know through jQuery: Text manipulation Check the URL Timestamp Change the attribute Change CSS Add expand / collapse web parts Modify form field Check site template Welcome message Append today’s date Open post

Updates

New Software Available for Download •  FAST Search Server 2010 with Service Pack 2 •  Office Web Apps with Service Pack 2 •  Project Server 2010 with Service Pack 2 •  Search Server 2010 with Service Pack 2 •  SharePoint Server 2010 with Service Pack 2 •  SharePoint Server 2010 Language Pack with Service Pack 2 •  SharePoint Server 2010 Service Pack 2

Split string in 2 column

I have a field called "Location" in this field we are storing "City, State". Now we want to show city in other column and state in other column. Basically I want to split the "Location" column based on "," (comma). To achieve this goal I am using the functions: LEFT RIGHT SEARCH LEN IF ISERROR TRIM Let’s see how can we do this with use of above given functions. If Errors, I am using ISERROR formula =IF (ISERROR (currentFormula), "", currentFormula) I am going to create a calculated column called "City" and copy & paste the " =IF(ISERROR(LEFT(Location,(SEARCH(",",Location,1)-1))), "", TRIM(LEFT(Location,(SEARCH(",",Location,1)-1)))) " in the formula text box. This formula will check whether any error is coming or not if error is coming then it will return blank value otherwise show us "City Name" I am going to create a calculated colu