Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
Myslik committed Apr 20, 2013
1 parent b264a02 commit a991e45
Show file tree
Hide file tree
Showing 19 changed files with 59,017 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Web.config
@@ -0,0 +1,6 @@
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
</system.web>
</configuration>
35 changes: 35 additions & 0 deletions ember-grid.sln
@@ -0,0 +1,35 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "ember-grid", ".", "{68880352-1B56-4766-BB54-488FC2C78AE7}"
ProjectSection(WebsiteProperties) = preProject
TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.0"
Debug.AspNetCompiler.VirtualPath = "/ember-grid"
Debug.AspNetCompiler.PhysicalPath = "..\ember-grid\"
Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\ember-grid\"
Debug.AspNetCompiler.Updateable = "true"
Debug.AspNetCompiler.ForceOverwrite = "true"
Debug.AspNetCompiler.FixedNames = "false"
Debug.AspNetCompiler.Debug = "True"
Release.AspNetCompiler.VirtualPath = "/ember-grid"
Release.AspNetCompiler.PhysicalPath = "..\ember-grid\"
Release.AspNetCompiler.TargetPath = "PrecompiledWeb\ember-grid\"
Release.AspNetCompiler.Updateable = "true"
Release.AspNetCompiler.ForceOverwrite = "true"
Release.AspNetCompiler.FixedNames = "false"
Release.AspNetCompiler.Debug = "False"
VWDPort = "53471"
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{68880352-1B56-4766-BB54-488FC2C78AE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{68880352-1B56-4766-BB54-488FC2C78AE7}.Debug|Any CPU.Build.0 = Debug|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file added ember-grid.v11.suo
Binary file not shown.
19 changes: 19 additions & 0 deletions examples/basic/basic.js
@@ -0,0 +1,19 @@
App.IndexRoute = Ember.Route.extend({
model: function () {
return App.Person.find();
},
setupController: function (controller, model) {
controller.set('content', model);
}
});

App.IndexController = GRID.TableController.extend({

columns: [
GRID.column('name'),
GRID.column('age')
]

});

App.IndexView = GRID.TableView.extend();

0 comments on commit a991e45

Please sign in to comment.