GithubHelp home page GithubHelp logo

fagan2888 / webhelpers Goto Github PK

View Code? Open in Web Editor NEW

This project forked from snoopydo/webhelpers

0.0 1.0 0.0 372 KB

Collection of 'Web Helpers' that I find myself reusing

C# 46.17% ASP 0.31% JavaScript 20.24% CSS 33.28%

webhelpers's Introduction

WebHelpers

  • Paging - like stackoverflow
  • Notifications

Notifications

Uses the Javascript library toastr from https://github.com/CodeSeven/toastr

Controller:

using dks.Web.Extensions;

public class HomeController : Controller
{
    //
    // GET: /Home/
    public ActionResult Index()
    {

		this.AddNotification("Welcome Guest");
        return View();
    }      
}

View:

<link href="~/content/toastr.css" rel="stylesheet" />
<script src="~/Scripts/jquery-1.6.4.js"></script>
<script src="~/Scripts/toastr.js"></script>


@Html.RenderToasts()

Paging

@Html.SimplePager(CurrentPage, PageCount, Url, CssClass);
// Url: {0} gets replaced with selected page
// CssClass: class assigned to wrapping div

@Html.SimplePager(CurrentPage, PageCount, "/Home/?page={0}", "pager");

Page Size

@Html.SimplePageSize(Url, CurrentPagesize, PageCount, Css);
// Url: {0} gets replaced with selected pagesize
// CssClass: class assigned to wrapping div

@Html.SimplePageSizer("/Home/?pagesize={0}", CurrentPagesize, PageCount, "page-sizer");

webhelpers's People

Contributors

snoopydo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.