Skip to content
/ tgrid Public
forked from TesserisPro/tgrid

HTML 5 ready fully functional grid with Knockout.JS and Angular support

License

Notifications You must be signed in to change notification settings

feafarot/tgrid

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TGrid

Grid for your HTML5 applications

Developed by Tesseris Pro LLC

TypeScript, Angular and Knockout compatible, fully customizable grid with rich functionality.

TGrid can work on any device and any screen resolution. It dynamically adjusts content for screen and even changes the layout. TGrid grid supports any (really any) number of rows that can be loaded dynamically when user scrolls or selects page.

Project site | Demo page

Supported browsers:

  • Internet Explorer 9+
  • Mozilla Firefox
  • Google Chrome
  • Safari
  • iPhone/iPad
  • Android 4+
  • Windows Phone are supporrted.

Features

  • Knockout.js and Angular support.
  • No dependency on JQuery or any other libraries.
  • Angular or Knockout.JS support are attached as modules.
  • Possibility to implement adapter for another technology.
  • TypeScript compatible. TGrid is developed on TypeScript.
  • Fully customizable. Header, Cell, Details, Footer are fully customizable with templates.
  • Custom user actions support.
  • Paging.
  • Virtualization/lazy loading.
  • Predefined set of item providers and possiblity to create custom provider. Custom item provider should only support sorting and filtering.
  • Filtering, grouping and sorting.
  • Grouping and group collapsing with virtualization and paging.
  • Editing with cell template.
  • Automatic swtich to mobile mode depending on @media.
  • Fully customizable with CSS. No hardcoded styles.
  • Free and open source.

Usage

Please see all samples with code at Demo page

If this overview and demo page with code samples are not enougth, please submit an issue

Simple TGrid usage scenario:

Grid rows in JavaScript:

var items = [
    { Name: "John", Surname: "Doe", Age: "33" }
    //... more items
];

Simple knockout view model in JavaScript:

function vm() {
    var self = this;
    self.nameColumnTitle = "First Name";
    self.itemsProvider = new TesserisPro.TGrid.ArrayItemsProvider(items);
};

Apply view-model binding (see Knockout.js for details):

$(function () {
    ko.applyBindings(new vm());
});

Grid markup in HTML:

<div data-bind="tgrid: {provider: itemsProvider}">
   <script type="text/html">  
       <column data-g-member="Name">  
       </column>  
       <column data-g-member="Surname">  
       </column>  
       <column data-g-member="Age">  
       </column>  
   </script>  
</div>

Custom templates:

Grid marckup with custom cell template:

<div data-bind="tgrid: { provider: itemsProvider }">
     <script type="text/html">
         <column data-g-member="Name">
             <cell>
                 <span style="color: red;" data-bind="text: item.Name"></span>               
             </cell>
         </column>
         <column data-g-member="Surname">
             <cell>
                 // Simple Knockout binding in template
                 <span data-bind="text: item.Surname"></span>
             </cell>
         </column>
         <column data-g-member="Age">           
             <cell>
                 <span style="color: red;" data-bind="text: item.Age"></span>
             </cell>
         </column>
     </script>
 </div>

Grid cell is bound to following datacontext (TypeScript code):

export class ItemViewModel {
    public model: any;
    public item: any;
    public grid: TGrid;
    public isGroupHeader: boolean;
}

Editing with templates:

<div data-bind="tgrid: { provider: itemsProvider }">
    <script type="text/html">
        <column data-g-member="name">
            <cell>
                <span style="color: green;" data-bind="text: item.Name, event: { click: model.toggleActive }, css: { hidden: model.editingItem() == item }"></span>                                    
                <input class="hidden" style="color: red;" data-bind="value: item.Name, css: { visible: model.editingItem() == item} "></input>                   
            </cell>
        </column>
        <column data-g-member="key">
            <cell>
                <span data-bind="text: item.Surname, event: { click: model.toggleActive }, css: { hidden: model.editingItem() == item } "></span>
                <input class="hidden" data-bind="value: item.Surname, css: { visible: model.editingItem() == item }"></input>
            </cell>
        </column>
        <column data-g-member="Age">           
            <cell>
                <span style="color: red;" data-bind="text: item.Age, event: { click: model.toggleActive }, css: { hidden: model.editingItem() == item }"></span>
                <input class="hidden" style="color: red;" data-bind="value: item.Age, css: { visible: model.editingItem() == item }"></input>
            </cell>
        </column>
    </script>
</div>

See more at Demo page

About

HTML 5 ready fully functional grid with Knockout.JS and Angular support

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 42.0%
  • C# 37.6%
  • TypeScript 12.8%
  • CSS 7.6%