| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
8 Articles match "Demo","Events"
| Related DevelopMentor Courses | MORE | | jQuery UI and Windows 8 and Internet Explorer 10 touch screens It turns out that Internet Explorer 10 has quite a good support for pointer and gesture events. This will suppress the default IE10 behavior and pass the gestures on to the jQuery event handler. have enhanced my small demo page here. You can toggle the support for touch events using the button to try both with and without support for touch. I recently did a blog post describing how to enable the jQuery UI drag effects. In this post I showed how to get the draggable effect to work on an iPad. While that works just fine it isn’t the end of the story. Enjoy! The Problem Solver - Wednesday, October 24, 2012 jQuery UI and touch screens The problem The reason jQuery UI doesn’t always work out of the box is because they use the mouse events. And on most cases a touch event also raises a mouse event but not quite always. For example take a look at the Draggable demo on an iPad. The solution The solution is rather simple: In the case of a touch event make sure this also raises the appropriate mouse event. Try for yourself I have created a small demo page here. You can toggle the support for touch events using the button to try both with and without support for touch. Enjoy The Problem Solver - Monday, September 17, 2012 Agile 2012 Development Practices & Craftsmanship stage Demo heavy rather than slide heavy. That's what goes in this list for us.This stage must have an introductory session to these areas, which we consider fundamental: TDD - Refactoring - Pairing - CI - BDD Guidelines Language : As these sessions are about code, one factor is which language will the demo's be given in. Even if that was just at an in-house event or for a small local group - that is ok. This is the original description we made as the producers for the Agile 2012 Development Practices Stage. Please clearly state that in your submission. Agile2012 DevelopMentor Courses - Monday, December 19, 2011 |
24 Articles match "Demo","Events"
| The Latest from DevelopMentor | MORE | | Creating an #AngularJS Controller It also responds to events to do things. 1: 2: 3: 4: AngularJS Demo. 'In the previous blog post I showed how to get started with a really minimal AngularJS application. Even though the app could multiply two numbers it could hardly be called useful and as it turns out that is about as much as I could do with it. Model View Controller AngularJS is an MVC framework. So far we have only seen the View part as the HTML used was the view used to render the page to the user. As the name suggest there should be more in the form of a Controller and a Model. 1: function DemoCtrl($scope) {. The Problem Solver - Wednesday, April 10, 2013 Creating an AngularJS Controller It also responds to events to do things. 1: 2: 3: 4: AngularJS Demo. 'Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model In the previous blog post I showed how to get started with a really minimal AngularJS application. Even though the app could multiply two numbers it could hardly be called useful and as it turns out that is about as much as I could do with it. Model View Controller AngularJS is an MVC framework. So far we have only seen the View part as the HTML used was the view used to render the page to the user. The Problem Solver - Wednesday, April 10, 2013 jQuery UI and Windows 8 and Internet Explorer 10 touch screens It turns out that Internet Explorer 10 has quite a good support for pointer and gesture events. This will suppress the default IE10 behavior and pass the gestures on to the jQuery event handler. have enhanced my small demo page here. You can toggle the support for touch events using the button to try both with and without support for touch. I recently did a blog post describing how to enable the jQuery UI drag effects. In this post I showed how to get the draggable effect to work on an iPad. While that works just fine it isn’t the end of the story. Enjoy! The Problem Solver - Wednesday, October 24, 2012 | -
| The Best from DevelopMentor | MORE | - MDN - Augusta Developer Event, 24th of February 2010
Time for the first Augusta Developer Event of 2010. Introduction to WCF based on a Silverlight demo. Introduction to RIA Services based on a Silverlight demo. The event will be held at: State of Maine Offices. Join us for a morning filled with information about Silverlight. Shawn, Chris and Mark will present a variety of topics and we've planned a group discussion, so make sure you come prepared with questions, examples and your experiences. February 24th, 2010 at 9:00am. What is Silverlight? Shawn Robichaud – 15 min. Choosing the right technology. Everyone - 30 min. The Blomsma Code - Tuesday, February 2, 2010 - jQuery UI and touch screens
The problem The reason jQuery UI doesn’t always work out of the box is because they use the mouse events. And on most cases a touch event also raises a mouse event but not quite always. For example take a look at the Draggable demo on an iPad. The solution The solution is rather simple: In the case of a touch event make sure this also raises the appropriate mouse event. Try for yourself I have created a small demo page here. You can toggle the support for touch events using the button to try both with and without support for touch. Enjoy The Problem Solver - Monday, September 17, 2012 - jQuery UI and Windows 8 and Internet Explorer 10 touch screens
It turns out that Internet Explorer 10 has quite a good support for pointer and gesture events. This will suppress the default IE10 behavior and pass the gestures on to the jQuery event handler. have enhanced my small demo page here. You can toggle the support for touch events using the button to try both with and without support for touch. I recently did a blog post describing how to enable the jQuery UI drag effects. In this post I showed how to get the draggable effect to work on an iPad. While that works just fine it isn’t the end of the story. Enjoy! The Problem Solver - Wednesday, October 24, 2012 - HTML 5 and file Drag & Drop
There is a lot of new goodness in HTML 5 and one of these features is being able to drag a file from the Windows explorer into the browser and handling the drop event using JavaScript. 1: 2: 3: 4: HTML 5 Drag & Drop demo. To work with file drops we need to handle 2 events, the dragover and the drop , by adding event handlers using the native addEventListener() function. 27: }); The dragover event is real simple, all we need to do is prevent the browser from doing it’s default behavior. The drop event is more interesting. 1: $( function () {. Enjoy! The Problem Solver - Thursday, October 13, 2011 - Agile 2012 Development Practices & Craftsmanship stage
Demo heavy rather than slide heavy. That's what goes in this list for us.This stage must have an introductory session to these areas, which we consider fundamental: TDD - Refactoring - Pairing - CI - BDD Guidelines Language : As these sessions are about code, one factor is which language will the demo's be given in. Even if that was just at an in-house event or for a small local group - that is ok. This is the original description we made as the producers for the Agile 2012 Development Practices Stage. Please clearly state that in your submission. Agile2012 DevelopMentor Courses - Monday, December 19, 2011 - Creating an #AngularJS Controller
It also responds to events to do things. 1: 2: 3: 4: AngularJS Demo. 'In the previous blog post I showed how to get started with a really minimal AngularJS application. Even though the app could multiply two numbers it could hardly be called useful and as it turns out that is about as much as I could do with it. Model View Controller AngularJS is an MVC framework. So far we have only seen the View part as the HTML used was the view used to render the page to the user. As the name suggest there should be more in the form of a Controller and a Model. 1: function DemoCtrl($scope) {. The Problem Solver - Wednesday, April 10, 2013 - What’s new in ApprovalTests.Net v.20?
sample output would look like this: /Home/Index/Hello = > [[controller, Home], [action, Index], [id, Hello]] / = > [[controller, Cool], [action, Index], [id, ]] Event approvals Similar to the example above, another aspect of code which is often hidden (or implicit) is which events are wired-up to your form. For example, it it easy to accidentally remove a button-click event. Event approvals allows you to easily lock down existing events which are associated with an object or a form. ASP routing support As community contributor, Krzysztof Ko?mic DevelopMentor Courses - Thursday, August 9, 2012 %>
| | |