eWorld.UI - Matt Hawley

Ramblings of Matt

Less Ramp-Up Time with Pair Programming?

April 15, 2008 00:50 by matthaw

Being my first day on the CodePlex team, I figured it'd be filled with "read this", "watch that", and "understand da code". Being that any other job I've started in the past has a significant ramp-up time, I would have guessed CodePlex would be no different. While I think there will be some time before I'm fully comfortable, I'd say that coming on board the first day and already writing some code is a success! Thanks pair programming!



New Beta of Website Live

April 13, 2008 01:23 by matthaw

Beta ScreenshotJust wanted to share the beta of my re-designed website. Please kick the tires some for me and give me some honest criticism. The first thing you'll notice is the ditching of the yellow & blue with a more fun green & orange.

You'll also notice that I did a bit of re-organization within the menu, but for the most common tasks - I added a "quicklinks" section that hopefully has the most common tasks one is looking for. I've also tied my blog in with the new design, displaying the last 10 entries, hoping to drive more visitors to the site.

Again, please enjoy this and comment on what you like, don't like, whatever!

Linky to Beta



MVC UI Validation Framework

April 2, 2008 16:36 by matthaw

The last few days I've been working on a MVC UI validation framework that closely follows that of ASP.NET. While my implementation is only in it's baby steps, I decided I would post it to the MVC Contrib project, and follow as much standards as what they have. Overall, the framework is very simple and straight forward in it's use.

Here were my requirements:

  1. It must closely match the ASP.NET UI validation framework.
  2. It should support all of the ASP.NET validators in their minimalistic implementation.
  3. It should require very minimal script inclusion or code to make this happen.
  4. It should only by a client side framework as you should be protecting your data on the server side through normal validations.

What I came up with, includes:

  1. It utilizes the ASP.NET UI validation framework by leveraging the WebUIValidation.js file (emitted through WebResource.axd).
  2. It supports all of the validators, with extended support for validation groups:
    1. RequiredValidator
    2. RegularExpressionValidator
    3. RangeValidator (currently does not support Date or Currency data types)
    4. CompareValidator
    5. CustomValidator
  3. It exposes 2 script inclusion calls, and 1 form validation setup call
    1. ValidatorRegistrationScripts() - Will render the WebUIValidation.js script, and scripts for form validation upon submission. This should be placed within the head tag.
    2. ValidatorInitializationScripts() - Will render all of the "expando" attributes for all validators upon the page and any initialization calls to set things up. This should be placed at the very end of your page before the closing body tag.
    3. FormValidation() - Will return an IDictionary object containing the "onsubmit" attribute. This should be called when creating your <form> tag.
  4. It is only a client-side framework leveraging ASP.NET's WebUIValidation.js

Since you now have an idea of the requirements and what was met, here's an example of it in action:

   1:  <%@ Import Namespace="MvcContrib.UI.Html" %>
   2:  <html>
   3:     <head>
   4:        <%= Html.Form().ValidatorRegistrationScripts() %>
   5:     </head>
   6:     <body>
   7:        <% using(Html.Form<MyController>(c => c.Save(), FormMethod.Post, Html.Form().FormValidation())) { %>
   8:        First Name: <%= Html.TextBox("firstName") %>
   9:        <%= Html.Form().RequiredValidator("firstNameRequired", "firstName", "First Name is Required.") %>
  10:        <%= Html.Form().RegularExpressionValidator("firstNameRegex", "firstName", "[a-zA-Z]*", "First Name can only contain letters.") %>
  11:        <br />
  12:        Age: <%= Html.TextBox("age") %>
  13:        <%= Html.Form().RequiredValidator("ageRequired", "age", "Age is Required.") %>
  14:        <%= Html.Form().RegularExpressionValidator("ageRegex", "age", "[0-9]*", "Age can only be numeric.") %>
  15:        <%= Html.Form().RangeValidator("ageRange", "age", "18", "35", ValidationDataType.Integer, "Age is not in target range of 18-35.") %>
  16:        <br />
  17:        <%= Html.SubmitButton("submit", "Save") %>
  18:        <% } %>
  19:        <%= Html.Form().ValidatorInitializationScripts() %>
  20:     </body>
  21:  </html>

At this point, I've posted it as a patch to MVC Contrib project, and hoping they apply it Smile. If you would like to get your hands on it, check out the patches page, mine is #1063. Please let me know your input, I tried making it as simple as possible to use, and I believe I've achieved that.

Update: My patch has been applied by Eric :) Get the latest build (>= 0.0.1.96) it if you'd like to check this out. Also, let me know of any issues you may find by logging bugs on the CodePlex site.



New Design is Live!

April 1, 2008 01:05 by matthaw

Ahh, I've worked so hard on this. I hope you all enjoy it. Check out my new design as I've taken a different direction for the site. I hope your a real developer and feel at home with my new layout!

Update: Okay, thanks for humoring me :) The site has been officially moved and the link above has been updated.



Categories: General | Personal
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Open Source Web Designs

March 30, 2008 15:36 by matthaw

When I was setting up my blog (I used BlogEngine.NET) I was walking through some tutorials on how I can create my own theme since none of the built-in ones fit my overall site style. One of the videos I was watching showed him converting a design from Open Source Web Design. This is a very cool site for the design challenged folks like me who can't come up with a good color combination or a great layout scheme.

Since viewing this site, I've decided it was time for me to ditch my current website look and bring in some new "flavor". Now, it's not live yet - but I'm still working on my redesign and will post when that is live. If you have any other cool open source sites like this or repositories for [free] stock images, please let me know. This stuff is great!



My New Job

March 27, 2008 16:12 by matthaw

Ah, the cat is finally out of the bag at work. I've been holding out recently and didn't want to say anything until the official notice had been sent around to my colleagues. I've been at Microsoft for just about 3 years now, working in the MSIT Partner division and I've finally decided it was time to move on. As of April 14th, I will be working on the CodePlex.com team! It's a very small, very agile team under the direction of Jim Newkirk. I can't wait to get over there and start learning a lot from this team.

With this new adventure, I hope to start blogging a lot more and really get back into the community. I've sorely missed not being involved and it's something I'll get back to doing.

This is just my first of few surprises, stay tuned as the 2nd one is going to take a bit more effort by me!



Categories: Personal | CodePlex
Actions: E-mail | Permalink | Comments (2) | Comment RSSRSS comment feed

New Blog Home and News to Come!

March 27, 2008 01:22 by matthaw

Well, if you've made it over here and saw this blog post - great! I realized it was time to start blogging again, and since http://weblogs.asp.net is getting too extremely cluttered, I decided to venture out on my own. First off, thanks for your support and I hope you enjoy keeping up to date on my blog. I swear I'll be more proactive about things. The biggest reason is leading me up to my second statement, I have some exciting news to come! I can't share just yet, but the two things I have in the works should be very exciting for both me and the community.

So, hopefully I can become more diligent in posting, as I've been doing some really cool things recently, and wanted to start sharing again. Now, I still can't say for certainty that this blog will remain technical by any means, but I'll definitely try my best. Until later...



Categories: General | Personal
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Excentrics World - Server Controls v2.0.6 Compiled against .NET 3.5

December 4, 2007 16:35 by matthaw

Version 2.0.6 of Excentrics World Server Controls, targeting the .NET 3.5 framework has just been released. This is purely a re-compilation against .NET 3.5 framework including the basic binaries and Microsoft Ajax.

This version can be downloaded by visiting http://www.eworldui.net/Download.aspx and choosing "3.5" as your framework version. The official build number for this release is the same (2.0.6.2393).



Excentrics World - Website Maintenance

January 26, 2007 09:57 by matthaw

My hosting company installed Microsoft AJAX 1.0 RTM this evening and broke my website temporarily. I've since then rebuild my website against the RTM bits myself, however have noticed in certain areas you may need to delete your cache (or do a shift+refresh) to get the download form to work. Sorry for any inconvenience this caused, but it was out of my hands!



Released: Excentrics World Server Controls v2.0.6

January 23, 2007 23:54 by matthaw

Version 2.0.6 of Excentrics World Server Controls has just been released targeting Microsoft AJAX Extensions, RTM (didn't know it was released, visit ScottGu's blog post announcing it!) to ensure continued full compatibility as well as a few bug fixes. It should be noted with this release, the control set's compatibility layer will no longer be compatible with any prior versions of Microsoft AJAX Extensions. A breaking change from 2.0.5 to 2.0.6 is that the compatibility layer no longer includes validation controls, following suit with Microsoft AJAX.

The items that were fixed are:

  • Fixed issue where the culture, if not set, was pulling from CurrentUICulture instead of CurrentCulture for the CalendarPopup and TimePicker.
  • Fixed issue where if the culture set for the CalendarPopup or TimePicker was a neutral culture, that it would attempt to resolve a specific culture for parsing of the date & time.
  • Fixed an issue where pasting into the NumericBox in IE with valid text that had whitespace surrounding it would fail.

The updated version can be downloaded by visiting http://www.eworldui.net/Download.aspx. The official build number for this release is 2.0.6.2393.





Copyright © 2000 - 2025 , Excentrics World