Skip to content
View psaliente's full-sized avatar
  • Pasay City, Philippines
Block or Report

Block or report psaliente

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. psaliente.github.io psaliente.github.io Public

    my project portfolio

    TypeScript

  2. GenericDataObject GenericDataObject Public

    Generic Helper Class for Multiple-Tier Architecture

    C# 1

  3. custom knockout js component used fo... custom knockout js component used for table column filter controls
    1
    function KODropDownComponent(params) {
    2
        var self = this;
    3
        self.version = "2.1.1";
    4
        self.dropdownFilter = params.value;
    5
        self.dropdownLabel = params.label;
  4. multiple select dropdown (tupe, eto ... multiple select dropdown (tupe, eto na yung code)
    1
    function KODropDownComponent(params) {
    2
        var self = this;
    3
        self.version = "1.0.0";
    4
        self.dropdownFilter = params.value;
    5
        self.dropdownLabel = params.label;
  5. custom knockout js component inspire... custom knockout js component inspired by jbt-tagbox (https://github.com/jbt/tagbox)
    1
    (function ($) {
    2
        $.fn.hasScrollBar = function () {
    3
            return this.get(0) ? this.get(0).scrollHeight > this.innerHeight() : false;
    4
        };
    5
    } (jQuery));