| |
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.
|
83 Articles match "Functionality","How To"
| Related DevelopMentor Courses | MORE | | 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. The AngularJS Controller The controller that drives the logic of the application is a pretty simple JavaScript constructor function. 1: function DemoCtrl($scope) {. " ; 5: $scope. 8: $scope. 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 An Effective Introduction to the STL Training Mastery of the subtle differences in semantics of member and non-member functions with the same name, e.g., find, remove, etc. Knowledge of how to integrate STL containers with code expecting arrays and other C-like data structures. The ability to cope with the complex STL-related error messages compilers often generate. The Standard Template Library (the STL) is the most exciting C++ innovation in a decade, one that promises to revolutionize C++ software development. Format: Lectures and programming labs. The companion reference book, Nicolai M. DevelopMentor Courses - Tuesday, March 1, 2011 |
76 Articles match "Functionality","How To"
| The Latest from DevelopMentor | MORE | | Using repeating elements in #AngularJS 'Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in #AngularJS In the previous posts I showed how to get started with AngularJS and use some of the basic AngularJS directives to data bind. In these examples I uses a really simple single element to bind to. However in lots of business cases you really need to display a list of repeating elements. Fortunately this is really easy to do. 1: function DemoCtrl($scope) {. 2: 3: $scope.people = [. Enjoy :-). The Problem Solver - Friday, May 10, 2013 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 The #AngularJS $scope is not the MVC Model 'Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model In the previous post I showed how to create and use an MVC Controller in AngularJS to manage the logic of an application. In this post I showed how to use the $scope variable that is passed into the Controller to share data between the Controller and the View. This may lead you to believe that the $scope is the MVC Model used but you would be completely wrong. 1: function DemoCtrl($scope) {. If you don’t have a “.” 13: *. The Problem Solver - Monday, April 15, 2013 | -
| The Best from DevelopMentor | MORE | - 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. Your code might look something like this $( function () {. $( "#btn" ).click( click( function () {. $.getJSON( then( function (books) {. $.each(books, Now Knockout.js 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. then( function (books) {. $.each(books, The Problem Solver - Wednesday, February 15, 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. But that also means they are not aware of the workflow runtime environment and can’t do much more that respond to calls from a workflow. This interface has just two methods. Enjoy! The Problem Solver - Wednesday, January 27, 2010 - 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. The AngularJS Controller The controller that drives the logic of the application is a pretty simple JavaScript constructor function. 1: function DemoCtrl($scope) {. " ; 5: $scope. 8: $scope. The Problem Solver - Wednesday, April 10, 2013 - 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 - More Workflow 4 Services and duplex communications
Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. Its a long story but the most important points where that workflow services don’t support the same style duplex communication as WCF with the callback channel defined in the ServiceContract but rather something that is called durable duplex where the callback contract is independent and the client has to create a ServiceHost and act as a full-blown WCF service. Would it not be much simpler in this case to pass the callback address as a parameter to our initial service call? The Problem Solver - Tuesday, May 4, 2010 - WF4&WCF and message correlation
In the previous blog posts, here , here and here , I demonstrated how to use WCF from WF4. This same some more about sending multiple messages to the same workflow, AKA Workflow Correlation. One of the ugly parts of Windows Workflow Foundation 3 was the message correlation part when you used WCF to send multiple messages to the same workflow. When using WF3 you where forced to use one of the context bindings like BasicHttpContextBinding or WSHttpContextBinding. Note that I cam completely free to change the person object as long as I use the same Id. The Problem Solver - Wednesday, September 2, 2009 %>
| | |