| |
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.
|
88 Articles match "How To","Requirements"
| Related DevelopMentor Courses | MORE | | jQuery UI and Windows 8 and Internet Explorer 10 touch screens 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. The solution Fortunately the solution is a lot simpler and doesn’t require an additional plug-in. What we need to do is take control of the action IE10 performs on touch. Setting its value to 'none' is all we need to do. This will suppress the default IE10 behavior and pass the gestures on to the jQuery event handler. It turns out this is rather simple. Enjoy! The Problem Solver - Wednesday, October 24, 2012 Creating an #AngularJS Controller 'In the previous blog post I showed how to get started with a really minimal AngularJS application. So far we have only seen the View part as the HTML used was the view used to render the page to the user. It gathers the data (Model) together and tells the View to render the data to the user. It also responds to events to do things. As this is used with the new keyword to create an object I have capitalized the first letter as is the convention in JavaScript. For those not used to JavaScript the (+$scope.x) operator = "?" The Problem Solver - Wednesday, April 10, 2013 Roll Your Own REST-ful WCF Router Recently I’ve been tasked with building a WCF routing service and faced the choice of whether to go with the built-in router that ships with WCF 4.0 , or to build one from scratch. Nevertheless, there are times when it might make sense to build a router that can talk to clients who don’t know anything about Soap, for example, an AJAX web application. While the ASP.NET MVC or the new ASP.NET Web API might seems like attractive options, WCF is the way to go if you need to accommodate both Soap-based and Rest-ful clients. FirstOrDefault(); if (region != DevelopMentor Courses - Tuesday, April 24, 2012 |
102 Articles match "How To","Requirements"
| The Latest from DevelopMentor | MORE | | A Roundup of MongoDB Management Tools Back in the early days, there really were no management tools analogous to RDBMS tools (e.g. It’s time to look around and see what management / monitoring tooling is around these days for MongoDB. There are many different options to choose depending on your platform and use-cases. Key features : Complete (albeit command-line only) access to MongoDB. So you should take the time to learn it properly. Especially since you’ll need to know most of the features to take advantage of Robomongo above anyway. SQL Server Management Studio ). Michael C. Kennedy's Weblog - Monday, April 22, 2013 Requirements and Specifications which I should just have entitled it “Requirements: Whose job are they anyway?” and so I’ve been giving a lot of thought to requirements. Bear with me, I’ll come back to this point at the end.) Something I didn’t mention in the last blog was that I thought: if I’m doing a talk about “need” I’d better clearly define Requirements from Specifications. So I turned to my bookshelves…. The first book I picked up was Mike Cohn’s User Stories Applied , the nearest thing the Agile-set has to a definitive text on requirements. nothing. Allan Kelly's Blog - Monday, April 15, 2013 Creating an #AngularJS Controller 'In the previous blog post I showed how to get started with a really minimal AngularJS application. So far we have only seen the View part as the HTML used was the view used to render the page to the user. It gathers the data (Model) together and tells the View to render the data to the user. It also responds to events to do things. As this is used with the new keyword to create an object I have capitalized the first letter as is the convention in JavaScript. For those not used to JavaScript the (+$scope.x) operator = "?" The Problem Solver - Wednesday, April 10, 2013 | -
| The Best from DevelopMentor | MORE | - How to improve a team's velocity?
By way of wrapping up my velocity mini-series ( Two ways to fill and iteration , Filling an iteration too well , and Velocity Targeting and Velocity Inflation ) I’m going to end with some advice on how to improve a team’s velocity. Over time these add up to big improvements. To use economic logic: this is about improving the supply-side. The supply-side argument (largely monetarist) suggests the way to solve unemployment is not to increase demand (Keynes style) but to loosen and liberalise the labour market. But back to software. Allan Kelly's Blog - Thursday, July 1, 2010 - How to get started with Knockout.js
Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. Using jQuery Assuming most people are going to be using jQuery on the client you might start with some jQuery code to generate HTML. And in all likelihood the actual HTML that needs to be generated will be quite a bit more complex. The next step people tend to take is using templates. Using templates. Enjoy! The Problem Solver - Monday, February 6, 2012 - How to data bind to collections using Knockout.js
I showed to to get started with the awesome Knockout.js In this post I am going to show how easy it is to load a collection of items from a REST service and data bind to the complete collection. To data bind to collections of data Knockout supports the foreach data binding. In the example below I am using an html to display a list of books. The has the data binding attribute so its contents are going to be repeated for each item in the collection being used, books in this case. and controlling updates using Knockout.js Title. The Problem Solver - Wednesday, February 15, 2012 - Reading Excel files in a WCF service using OleDB requires 32bit process
My development machine is running Windows 7 64bit and my service was deployed to IIS. kept running into a problem with opening the OleDb connection to the Excel file: “Error: Microsoft.Jet.OLEDB.4.0' After changing my ASP.NET processes to run in 32bit everything ran just fine. This KB article shows how to change ASP.NET to 32bit: [link]. I’ve been doing a little work on a WCF service that reads an Excel file. provider is not registered on the local machine.”. Turns out that Office Jet provider will only run in 32bit. The Blomsma Code - Wednesday, March 10, 2010 - jQuery UI and Windows 8 and Internet Explorer 10 touch screens
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. The solution Fortunately the solution is a lot simpler and doesn’t require an additional plug-in. What we need to do is take control of the action IE10 performs on touch. Setting its value to 'none' is all we need to do. This will suppress the default IE10 behavior and pass the gestures on to the jQuery event handler. It turns out this is rather simple. Enjoy! The Problem Solver - Wednesday, October 24, 2012 - Using WF4 bookmarks with IWorkflowInstanceExtension
Beta 2 In this previous blog post I showed how to create an asynchronous activity using the NativeActivity and CreateBookmark to pause a workflow execution. Neither the WorkflowInvoker not the WorkflowServiceHost contain a ResumeBookmark function so how do we resume a bookmark using either of those execution hosts? The trick is to use a IWorkflowInstanceExtension. Using a IWorkflowInstanceExtension Workflow extensions can be of any type you want, there is no base class or interface requirement. Note: This blog post is written using the.NET framework 4.0 The Problem Solver - Wednesday, January 27, 2010 - Using the WCF Web API in an ASP.NET MVC application
Warning: This post is based on a prerelease version of the WCF Web API In my previous blog post I showed how to add to and use the new WCF Web API a console application using NuGet. Now that works but it is far more likely that you will want to be using IIS and host the REST service as part of a web application. So in this blog post I am going to show how to do the normal thing I Created an ASP.NET MVC 3 app to host the REST service. Just like in this post we can add a reference to the WCF Web API to our project. if (_repo != The Problem Solver - Monday, June 13, 2011 %>
| | |