Skip to content

Instantly share code, notes, and snippets.

View Dekryptid's full-sized avatar

Robert Gonzalez Dekryptid

  • Unisoft Communications
  • Miami, FL
  • 22:26 (UTC -04:00)
View GitHub Profile
@Dekryptid
Dekryptid / MvcHtmlHelper.cs
Created August 1, 2014 21:34
Bootstrap ASP.NET MVC Validation Summary
using System;
using System.Web.Mvc;
namespace Nurvx.Mvc.Helpers
{
public static class MvcHtmlHelper
{
public static MvcHtmlString BootstrapValidationSummary(this HtmlHelper helper, string validationMessage = "", bool dismissible = false)
{
// If the ModelState has no errors, return empty
@Dekryptid
Dekryptid / jquery.dataTables.usdate.plugin.js
Created February 14, 2014 22:12
jquery.dataTables - U.S. Date Sort Plugin
$.extend($.fn.dataTableExt.oSort, {
"date-us-pre": function (a) {
var b = a.match(/(\d{1,2})\/(\d{1,2})\/(\d{2,4})/),
month = b[1],
day = b[2],
year = b[3];
if (year.length == 2) {
if (parseInt(year, 10) < 70) year = '20' + year;
else year = '19' + year;