This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Web.Mvc; | |
| using System.Web.Mvc.Html; | |
| using System.Web; | |
| using System.IO; | |
| namespace Msa.Common |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static class StringExtentions | |
| { | |
| // example "Controls_Admin_AdminDocument_EditDocumentList load IsPostBack={0}".debug(IsPostBack); | |
| public static void debug(this string str, params object[] args) | |
| { | |
| var args_json = args.Select(a => a.json()).ToArray(); | |
| Console.WriteLine("********************************"); | |
| Console.WriteLine(str.f(args_json)); | |
| Console.WriteLine("********************************"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * jQuery.fn.sortElements | |
| * -------------- | |
| * @author James Padolsey (http://james.padolsey.com) | |
| * @version 0.11 | |
| * @updated 18-MAR-2010 | |
| * -------------- | |
| * @param Function comparator: | |
| * Exactly the same behaviour as [1,2,3].sort(comparator) | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| search = () -> | |
| textboxs = $(".live_filter").add $("[data-live-cnt]") | |
| textboxs.keyup -> | |
| textbox = $(this) | |
| cnt = textbox.attr("data-live-cnt") | |
| cnt = "" unless cnt? | |
| pattern = $.trim textbox.val() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.log = (obj) -> if window.console then window.console.log(obj) | |
| // usage | |
| // var x = 42; | |
| // var map = function (x) { return eval(x); }; | |
| // alert(f("x $x", map)); | |
| window.f = function (s, map) { | |
| return s.replace(/\$(\w+)/g, function (dummy, v) { return map(v);} ); | |
| }; |
NewerOlder