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
<!doctype html> | |
<html> | |
<head> | |
<title>gallery-datatable-popup</title> | |
<script src="/build/yui/yui.js"></script> | |
</head> | |
<body class="yui3-skin-sam"> | |
<div id="dtable"></div> | |
<div id="logger"></div> |
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
todds-Mac-Pro:gallery-datatable-contextmenu todd$ ll | |
total 40 | |
drwxr-xr-x 14 todd staff 476 Jan 14 22:58 ./ | |
drwxr-xr-x 14 todd staff 476 Jan 14 01:52 ../ | |
drwxr-xr-x 10 todd staff 340 Jan 14 23:06 .git/ | |
-rw-r--r-- 1 todd staff 146 Jan 14 09:21 HISTORY.md | |
-rw-r--r-- 1 todd staff 518 Jan 14 14:44 README.md | |
drwxr-xr-x 4 todd staff 136 Jan 14 14:20 assets/ | |
-rw-r--r-- 1 todd staff 262 Jan 14 14:21 build.json | |
-rw-r--r-- 1 todd staff 659 Jan 14 01:54 build.properties |
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
// showEditor | |
oe.showEditor(td6); | |
inp = oe._inputNode; | |
// ESC cancelEditor | |
td6.simulate('click'); | |
//inp.focus(); | |
inp.simulate('keypress',{charCode:72}); // 4:52 H:72 i:105 | |
inp.simulate('keypress',{charCode:52}); // 4:52 H:72 i:105 | |
inp.simulate('keydown',{keyCode:27}); |
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
<table class="table table-bordered table-hover table-condensed"> | |
<thead> | |
<tr> | |
<th>- Actions -</th> | |
<th ng-repeat="col in cols" ng-click="columnClick(col)" data-col-index="{{$index}}" class="">{{col.key}}</th> | |
</tr> | |
</thead> | |
<tbody class="body-scroll"> | |
<tr ng-repeat="row in rows | orderBy:sortCol"> | |
<td class="center" style="min-width:175px;width:175px;"> |
OlderNewer