The jquery.pivot plugin can be used for presenting table data in pivot form. It is made and maintained me, Janus Schmidt, currently employed by Metalogic.dk.
The plugin was originally made for the time tracking site styrpaatiden.dk
The project lives on github.
To run an example, click run. The raw table data will be shown. Then click the table and it will be transformed into a pivot table
Source:
<script>
$('#res').pivot({
source: $('#example1'),
formatFunc: function (n) { return jQuery.fn.pivot.formatUK(n, 2); },
onResultCellClicked: function (data) { alert(dumpObj(data, "data")); },
sortPivotColumnHeaders:false //we want months non sorted to get them in the right order.
});
</script>
.....
<table id="example1" data-pivot-dataid="An optional sourcetable identifier">
<tr>
<th data-pivot-pivot="true">Month </th>
<th data-pivot-groupbyrank="2">Subject </th>
<th data-pivot-groupbyrank="1" data-pivot-dataid="An optional id.">Student </th>
<th data-pivot-result="true">Score </th>
</tr>
.....
Example with danish number formatting and no fold unfold buttons and every row open
runSource:
<script>
$('#res').pivot({
source: $('#example2'),
formatFunc: function (n) { return jQuery.fn.pivot.formatDK(n, 2); },
parseNumFunc: function (n) { return +((typeof n === "string") ? +n.replace('.', '').replace(',', '.') : n); },
onResultCellClicked: function (data) { alert(dumpObj(data, "data")); },
bCollapsible : false
});
</script>
.....
<table id="example2" data-pivot-dataid="An identifier for the table">
<tr>
<th data-pivot-groupbyrank="2" data-pivot-datatype="number">companyid </th>
<th data-pivot-groupbyrank="3" data-pivot-datatype="number">userid </th>
<th data-pivot-pivot="true" data-pivot-dataid="idforpivot" data-pivot-sortbycol="2">date </th>
<th>regMinutes </th>
<th>flexMinutes </th>
<th>correction </th>
<th data-pivot-result="true">diffMinutes </th>
</tr>
.....
Example with 3 groupby columns.
runSource:
<script>
$('#res').pivot({
source: $('#example3'),
formatFunc: function (n) { return jQuery.fn.pivot.formatDK(n, 2); },
parseNumFunc: function (n) { return +((typeof n === "string") ? +n.replace('.', '').replace(',', '.') : n); },
onResultCellClicked: function (data) { alert(dumpObj(data, "data")); }
});
</script>
....
<table id="example3">
<tbody>
<tr>
<th data-pivot-groupbyrank="1">Ansat </th>
<th data-pivot-groupbyrank="2">Kunde </th>
<th data-pivot-groupbyrank="3">Projekt </th>
<th data-pivot-result="true">sum </th>
<th>Fakturerbar </th>
<th>sort </th>
<th data-pivot-pivot="true" data-pivot-dataid="idforpivot">dato </th>
</tr>
.....
This is the same as example 1 except the source is JSON data.
runSource:
<script>
$('#res').pivot({
source: example4JSONdata,
formatFunc: function (n) { return jQuery.fn.pivot.formatUK(n, 2); },
onResultCellClicked: function (data) { alert(dumpObj(data, "data")); },
sortPivotColumnHeaders:false //we want months non sorted to get them in the right order.
});
var example4JSONdata = {
dataid: "An optional sourcetable identifier",
columns: [
{ colvalue: "Month ", coltext: "Month ", header: "Month ", sortbycol: "Month ", groupbyrank: null, pivot: true, result: false },
{ colvalue: "Subject ", coltext: "Subject ", header: "Subject ", sortbycol: "Subject ", groupbyrank: 2, pivot: false, result: false },
{ colvalue: "Student ", coltext: "Student ", header: "Student ", sortbycol: "Student ", dataid: "An optional id.", groupbyrank: 1, pivot: false, result: false },
{ colvalue: "Score ", coltext: "Score ", header: "Score ", sortbycol: "Score ", groupbyrank: null, pivot: false, result: true}],
rows: [
{ "Month ": "January", "Subject ": "English", "Student ": "Elisa", "Score ": "8.7" },
{ "Month ": "January ", "Subject ": "Maths ", "Student ": "Elisa ", "Score ": "6.5 " },
{ "Month ": "January ", "Subject ": "Science ", "Student ": "Elisa ", "Score ": "5.8 " },
.....
{ "Month ": "March ", "Subject ": "History ", "Student ": "Mary ", "Score ": "6.7 " },
{ "Month ": "March ", "Subject ": "French ", "Student ": "Mary ", "Score ": "9.0 "}]
};
</script>
Example with 2 simultaneous tables from json sources. Same as example 1 and 2 but from json sources.
run
<script>
$('#res').pivot({
source: example4JSONdata, //same as example 1
formatFunc: function (n) { return jQuery.fn.pivot.formatUK(n, 2); },
onResultCellClicked: function (data) { alert(dumpObj(data, "data")); }
});
$('#res2').pivot({
source: example5JSONdata, //same as example 2
formatFunc: function (n) { return jQuery.fn.pivot.formatDK(n, 2); },
parseNumFunc: function (n) { return +((typeof n === "string") ? +n.replace('.', '').replace(',', '.') : n); },
onResultCellClicked: function (data) { alert(dumpObj(data, "data")); }
});
var example4JSONdata = {
dataid: "An optional sourcetable identifier",
columns: [
{ colvalue: "Month ", coltext: "Month ", header: "Month ", sortbycol: "Month ", groupbyrank: null, pivot: true, result: false },
{ colvalue: "Subject ", coltext: "Subject ", header: "Subject ", sortbycol: "Subject ", groupbyrank: 2, pivot: false, result: false },
{ colvalue: "Student ", coltext: "Student ", header: "Student ", sortbycol: "Student ", dataid: "An optional id.", groupbyrank: 1, pivot: false, result: false },
{ colvalue: "Score ", coltext: "Score ", header: "Score ", sortbycol: "Score ", groupbyrank: null, pivot: false, result: true}],
rows: [
{ "Month ": "January", "Subject ": "English", "Student ": "Elisa", "Score ": "8.7" },
{ "Month ": "January ", "Subject ": "Maths ", "Student ": "Elisa ", "Score ": "6.5 " },
{ "Month ": "January ", "Subject ": "Science ", "Student ": "Elisa ", "Score ": "5.8 " },
.....
{ "Month ": "March ", "Subject ": "History ", "Student ": "Mary ", "Score ": "6.7 " },
{ "Month ": "March ", "Subject ": "French ", "Student ": "Mary ", "Score ": "9.0 "}]
};
var example5JSONdata = {
"dataid": "An identifier for the table",
"columns": [
{ "colvalue": "companyid ", "coltext": "companyid ", "header": "companyid ", "datatype": "number", "sortbycol": "companyid ", "groupbyrank": 2, "pivot": false, "result": false },
{ "colvalue": "userid ", "coltext": "userid ", "header": "userid ", "datatype": "number", "sortbycol": "userid ", "groupbyrank": 3, "pivot": false, "result": false },
{ "colvalue": "date ", "coltext": "date ", "header": "date ", "sortbycol": "date ", "dataid": "idforpivot", "groupbyrank": null, "pivot": true, "result": false },
{ "colvalue": "regMinutes ", "coltext": "regMinutes ", "header": "regMinutes ", "sortbycol": "regMinutes ", "groupbyrank": null, "pivot": false, "result": false },
{ "colvalue": "flexMinutes ", "coltext": "flexMinutes ", "header": "flexMinutes ", "sortbycol": "flexMinutes ", "groupbyrank": null, "pivot": false, "result": false },
{ "colvalue": "correction ", "coltext": "correction ", "header": "correction ", "sortbycol": "correction ", "groupbyrank": null, "pivot": false, "result": false },
{ "colvalue": "diffMinutes ", "coltext": "diffMinutes ", "header": "diffMinutes ", "sortbycol": "diffMinutes ", "groupbyrank": null, "pivot": false, "result": true}],
"rows": [
{ "companyid ": 2, "userid ": 1, "date ": "02-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "0 ", "correction ": "0 ", "diffMinutes ": "0 " },
{ "companyid ": 2, "userid ": 1, "date ": "03-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "330 ", "correction ": "0 ", "diffMinutes ": "-330 " },
{ "companyid ": 2, "userid ": 1, "date ": "01-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "0 ", "correction ": "0 ", "diffMinutes ": "0 " },
.....
{ "companyid ": 4, "userid ": 95, "date ": "12-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "450 ", "correction ": "0 ", "diffMinutes ": "-450 " },
{ "companyid ": 4, "userid ": 121, "date ": "12-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "360 ", "correction ": "0 ", "diffMinutes ": "-360 "}]
};
</script>
Example with text data in result column from json sources.
run
<script>
$('#res').pivot({
source: example6JSONdata,
parseNumFunc : null,
aggregatefunc: function (aggValues) { return aggValues.join(', '); },
bTotals: false,
onResultCellClicked: function (data) { alert(dumpObj(data, "data")); }
});
var example6JSONdata = {
dataid: "Application Information.",
columns: [
{ colvalue: "password", coltext: "password", header: "password", sortbycol: "password", result: true },
{ colvalue: "username", coltext: "username", header: "username", sortbycol: "username", pivot:true},
{ colvalue: "hostname", coltext: "hostname", header: "hostname", sortbycol: "hostname", groupbyrank: 2},
{ colvalue: "sysid", coltext: "sysid", header: "sysid", sortbycol: "sysid", dataid: "sysid", groupbyrank: 1}],
rows : [
{ "sysid": "SID1", "hostname": "host01", "username": "user1", "password": "a"},
{ "sysid": "SID1", "hostname": "host01", "username": "user2", "password": "b"},
{ "sysid": "SID1", "hostname": "host51", "username": "user1", "password": "c"},
{ "sysid": "SID1", "hostname": "host52", "username": "user1", "password": "d"},
{ "sysid": "SID1", "hostname": "host52", "username": "user2", "password": "e"},
{ "sysid": "SID1", "hostname": "host52", "username": "user2", "password": "e1" },
{ "sysid": "SID1", "hostname": "host52", "username": "user2", "password": "e2" },
{ "sysid": "SID1", "hostname": "host52", "username": "user2", "password": "e3" },
{ "sysid": "SID1", "hostname": "host54", "username": "user1", "password": "f"},
{ "sysid": "SID2", "hostname": "host55", "username": "user1", "password": "g"},
{ "sysid": "SID2", "hostname": "host55", "username": "user2", "password": "h"},
{ "sysid": "SID2", "hostname": "host02", "username": "user1", "password": "i"},
{ "sysid": "SID2", "hostname": "host02", "username": "user1", "password": "j"},
{ "sysid": "SID2", "hostname": "host53", "username": "user1", "password": "k"},
{ "sysid": "SID2", "hostname": "host53", "username": "user2", "password": "l"},
{ "sysid": "SID2", "hostname": "host53", "username": "user3", "password": "m"}]
};
</script>
Performance test. This example takes 100 rows from example5 and repeats them 200 times to get a total of 20.000 rows of data
run
<script>
$('#res').pivot({
source: example5JSONdata, //same as example 2
formatFunc: function (n) { return jQuery.fn.pivot.formatDK(n, 2); },
parseNumFunc: function (n) { return +((typeof n === "string") ? +n.replace('.', '').replace(',', '.') : n); },
onResultCellClicked: function (data) { alert(dumpObj(data, "data")); }
});
var JSONdata = {
"dataid": "An identifier for the table",
"columns": [
{ "colvalue": "companyid ", "coltext": "companyid ", "header": "companyid ", "datatype": "number", "sortbycol": "companyid ", "groupbyrank": 2, "pivot": false, "result": false },
{ "colvalue": "userid ", "coltext": "userid ", "header": "userid ", "datatype": "number", "sortbycol": "userid ", "groupbyrank": 3, "pivot": false, "result": false },
{ "colvalue": "date ", "coltext": "date ", "header": "date ", "sortbycol": "date ", "dataid": "idforpivot", "groupbyrank": null, "pivot": true, "result": false },
{ "colvalue": "regMinutes ", "coltext": "regMinutes ", "header": "regMinutes ", "sortbycol": "regMinutes ", "groupbyrank": null, "pivot": false, "result": false },
{ "colvalue": "flexMinutes ", "coltext": "flexMinutes ", "header": "flexMinutes ", "sortbycol": "flexMinutes ", "groupbyrank": null, "pivot": false, "result": false },
{ "colvalue": "correction ", "coltext": "correction ", "header": "correction ", "sortbycol": "correction ", "groupbyrank": null, "pivot": false, "result": false },
{ "colvalue": "diffMinutes ", "coltext": "diffMinutes ", "header": "diffMinutes ", "sortbycol": "diffMinutes ", "groupbyrank": null, "pivot": false, "result": true}],
"rows": [
{ "companyid ": 2, "userid ": 1, "date ": "02-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "0 ", "correction ": "0 ", "diffMinutes ": "0 " },
{ "companyid ": 2, "userid ": 1, "date ": "03-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "330 ", "correction ": "0 ", "diffMinutes ": "-330 " },
{ "companyid ": 2, "userid ": 1, "date ": "01-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "0 ", "correction ": "0 ", "diffMinutes ": "0 " },
.....
{ "companyid ": 4, "userid ": 95, "date ": "12-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "450 ", "correction ": "0 ", "diffMinutes ": "-450 " },
{ "companyid ": 4, "userid ": 121, "date ": "12-08-2009 ", "regMinutes ": "0 ", "flexMinutes ": "360 ", "correction ": "0 ", "diffMinutes ": "-360 "}]
};
</script>
Same as example 1 exept with 2 result columns.
run
<script>
JSONdata = $.extend(true, {}, example4JSONdata);
JSONdata.columns.push({ colvalue: 'Score2', coltext: 'Score2', header: 'Other score', sortbycol: 'Score2 ', groupbyrank: null, pivot: false, result: true });
$('#res').pivot({
source: JSONdata, //same as example 1 exept score2 column is also result column
formatFunc: function (n) { return jQuery.fn.pivot.formatUK(n, 2); },
onResultCellClicked: function (data) { alert(dumpObj(data, 'data')); }
});
var example4JSONdata = {
dataid: "An optional sourcetable identifier",
columns: [
{ colvalue: "Month ", coltext: "Month ", header: "Month ", sortbycol: "Month ", groupbyrank: null, pivot: true, result: false },
{ colvalue: "Subject ", coltext: "Subject ", header: "Subject ", sortbycol: "Subject ", groupbyrank: 2, pivot: false, result: false },
{ colvalue: "Student ", coltext: "Student ", header: "Student ", sortbycol: "Student ", dataid: "An optional id.", groupbyrank: 1, pivot: false, result: false },
{ colvalue: "Score ", coltext: "Score ", header: "Score ", sortbycol: "Score ", groupbyrank: null, pivot: false, result: true}],
rows: [
{ "Month ": "January", "Subject ": "English", "Student ": "Elisa", "Score ": "8.7" },
{ "Month ": "January ", "Subject ": "Maths ", "Student ": "Elisa ", "Score ": "6.5 " },
{ "Month ": "January ", "Subject ": "Science ", "Student ": "Elisa ", "Score ": "5.8 " },
.....
{ "Month ": "March ", "Subject ": "History ", "Student ": "Mary ", "Score ": "6.7 " },
{ "Month ": "March ", "Subject ": "French ", "Student ": "Mary ", "Score ": "9.0 "}]
};
</script>
Month | Subject | Student | Score |
---|---|---|---|
January | English | Elisa | 8.7 |
January | Maths | Elisa | 6.5 |
January | Science | Elisa | 5.8 |
January | Art | Elisa | 8.9 |
January | History | Elisa | 8.1 |
January | French | Elisa | 6.2 |
February | English | Elisa | 5.1 |
February | Maths | Elisa | 7.2 |
February | Science | Elisa | 8.9 |
February | Art | Elisa | 8.3 |
February | History | Elisa | 8.4 |
February | French | Elisa | 5.7 |
March | English | Elisa | 4.1 |
March | Maths | Elisa | 7.1 |
March | Science | Elisa | 4.1 |
March | Art | Elisa | 9.2 |
March | History | Elisa | 9.1 |
March | French | Elisa | 5.6 |
January | english | Mary | 8.7 |
January | Maths | Mary | 5.3 |
January | Science | Mary | 3.5 |
January | Art | Mary | 6.1 |
January | History | Mary | 5.8 |
January | French | Mary | 9.2 |
February | english | Mary | 6.8 |
February | Maths | Mary | 5.4 |
February | Science | Mary | 5.6 |
February | Art | Mary | 5.9 |
February | History | Mary | 6.1 |
February | French | Mary | 9.3 |
March | english | Mary | 4.1 |
March | Maths | Mary | 3.5 |
March | Science | Mary | 4.1 |
March | Art | Mary | 4.8 |
March | History | Mary | 6.7 |
March | French | Mary | 9.0 |
companyid | userid | date | regMinutes | flexMinutes | correction | diffMinutes |
---|---|---|---|---|---|---|
2 | 1 | 02-08-2009 | 0 | 0 | 0 | 0 |
2 | 1 | 03-08-2009 | 0 | 330 | 0 | -330 |
2 | 1 | 01-08-2009 | 0 | 0 | 0 | 0 |
2 | 1 | 04-08-2009 | 0 | 300 | 0 | -300 |
2 | 1 | 05-08-2009 | 0 | 300 | 0 | -300 |
2 | 1 | 06-08-2009 | 0 | 300 | 0 | -300 |
2 | 1 | 07-08-2009 | 0 | 300 | 0 | -300 |
2 | 1 | 08-08-2009 | 0 | 0 | 0 | 0 |
2 | 1 | 09-08-2009 | 0 | 0 | 0 | 0 |
2 | 1 | 10-08-2009 | 0 | 330 | 0 | -330 |
2 | 1 | 11-08-2009 | 0 | 300 | 0 | -300 |
2 | 1 | 12-08-2009 | 0 | 300 | 0 | -300 |
4 | 18 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 86 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 87 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 88 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 89 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 90 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 91 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 92 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 93 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 94 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 95 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 121 | 01-08-2009 | 0 | 0 | 0 | 0 |
4 | 18 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 86 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 87 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 88 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 89 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 90 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 91 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 92 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 93 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 94 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 95 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 121 | 02-08-2009 | 0 | 0 | 0 | 0 |
4 | 18 | 03-08-2009 | 0 | 450 | 0 | -450 |
4 | 86 | 03-08-2009 | 0 | 450 | 0 | -450 |
4 | 87 | 03-08-2009 | 0 | 360 | 0 | -360 |
4 | 88 | 03-08-2009 | 0 | 450 | 0 | -450 |
4 | 89 | 03-08-2009 | 0 | 450 | 0 | -450 |
4 | 90 | 03-08-2009 | 0 | 450 | 0 | -450 |
4 | 91 | 03-08-2009 | 0 | 390 | 0 | -390 |
4 | 92 | 03-08-2009 | 0 | 420 | 0 | -420 |
4 | 93 | 03-08-2009 | 0 | 360 | 0 | -360 |
4 | 94 | 03-08-2009 | 0 | 450 | 0 | -450 |
4 | 95 | 03-08-2009 | 0 | 450 | 0 | -450 |
4 | 121 | 03-08-2009 | 0 | 360 | 0 | -360 |
4 | 18 | 04-08-2009 | 0 | 450 | 0 | -450 |
4 | 86 | 04-08-2009 | 0 | 450 | 0 | -450 |
4 | 87 | 04-08-2009 | 0 | 360 | 0 | -360 |
4 | 88 | 04-08-2009 | 0 | 450 | 0 | -450 |
4 | 89 | 04-08-2009 | 0 | 450 | 0 | -450 |
4 | 90 | 04-08-2009 | 0 | 450 | 0 | -450 |
4 | 91 | 04-08-2009 | 0 | 390 | 0 | -390 |
4 | 92 | 04-08-2009 | 0 | 390 | 0 | -390 |
4 | 93 | 04-08-2009 | 0 | 390 | 0 | -390 |
4 | 94 | 04-08-2009 | 0 | 450 | 0 | -450 |
4 | 95 | 04-08-2009 | 0 | 450 | 0 | -450 |
4 | 121 | 04-08-2009 | 0 | 360 | 0 | -360 |
4 | 18 | 05-08-2009 | 0 | 450 | 0 | -450 |
4 | 86 | 05-08-2009 | 0 | 450 | 0 | -450 |
4 | 87 | 05-08-2009 | 0 | 360 | 0 | -360 |
4 | 88 | 05-08-2009 | 0 | 450 | 0 | -450 |
4 | 89 | 05-08-2009 | 0 | 450 | 0 | -450 |
4 | 90 | 05-08-2009 | 0 | 450 | 0 | -450 |
4 | 91 | 05-08-2009 | 0 | 390 | 0 | -390 |
4 | 92 | 05-08-2009 | 0 | 390 | 0 | -390 |
4 | 93 | 05-08-2009 | 0 | 480 | 0 | -480 |
4 | 94 | 05-08-2009 | 0 | 450 | 0 | -450 |
4 | 95 | 05-08-2009 | 0 | 450 | 0 | -450 |
4 | 121 | 05-08-2009 | 0 | 360 | 0 | -360 |
4 | 18 | 06-08-2009 | 0 | 450 | 0 | -450 |
4 | 86 | 06-08-2009 | 0 | 450 | 0 | -450 |
4 | 87 | 06-08-2009 | 0 | 360 | 0 | -360 |
4 | 88 | 06-08-2009 | 0 | 450 | 0 | -450 |
4 | 89 | 06-08-2009 | 0 | 450 | 0 | -450 |
4 | 90 | 06-08-2009 | 0 | 450 | 0 | -450 |
4 | 91 | 06-08-2009 | 0 | 390 | 0 | -390 |
4 | 92 | 06-08-2009 | 0 | 0 | 0 | 0 |
4 | 93 | 06-08-2009 | 0 | 390 | 0 | -390 |
4 | 94 | 06-08-2009 | 0 | 450 | 0 | -450 |
4 | 95 | 06-08-2009 | 0 | 450 | 0 | -450 |
4 | 121 | 06-08-2009 | 0 | 360 | 0 | -360 |
4 | 18 | 07-08-2009 | 0 | 420 | 0 | -420 |
4 | 86 | 07-08-2009 | 0 | 420 | 0 | -420 |
4 | 87 | 07-08-2009 | 0 | 360 | 0 | -360 |
4 | 88 | 07-08-2009 | 0 | 420 | 0 | -420 |
4 | 89 | 07-08-2009 | 0 | 420 | 0 | -420 |
4 | 90 | 07-08-2009 | 0 | 420 | 0 | -420 |
4 | 91 | 07-08-2009 | 0 | 360 | 0 | -360 |
4 | 92 | 07-08-2009 | 0 | 0 | 0 | 0 |
4 | 93 | 07-08-2009 | 0 | 360 | 0 | -360 |
4 | 94 | 07-08-2009 | 0 | 420 | 0 | -420 |
4 | 95 | 07-08-2009 | 0 | 420 | 0 | -420 |
4 | 121 | 07-08-2009 | 0 | 360 | 0 | -360 |
4 | 18 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 86 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 87 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 88 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 89 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 90 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 91 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 92 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 93 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 94 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 95 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 121 | 08-08-2009 | 0 | 0 | 0 | 0 |
4 | 18 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 86 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 87 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 88 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 89 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 90 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 91 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 92 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 93 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 94 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 95 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 121 | 09-08-2009 | 0 | 0 | 0 | 0 |
4 | 18 | 10-08-2009 | 0 | 450 | 0 | -450 |
4 | 86 | 10-08-2009 | 0 | 450 | 0 | -450 |
4 | 87 | 10-08-2009 | 0 | 360 | 0 | -360 |
4 | 88 | 10-08-2009 | 0 | 450 | 0 | -450 |
4 | 89 | 10-08-2009 | 0 | 450 | 0 | -450 |
4 | 90 | 10-08-2009 | 0 | 450 | 0 | -450 |
4 | 91 | 10-08-2009 | 0 | 390 | 0 | -390 |
4 | 92 | 10-08-2009 | 0 | 420 | 0 | -420 |
4 | 93 | 10-08-2009 | 0 | 360 | 0 | -360 |
4 | 94 | 10-08-2009 | 0 | 450 | 0 | -450 |
4 | 95 | 10-08-2009 | 0 | 450 | 0 | -450 |
4 | 121 | 10-08-2009 | 0 | 360 | 0 | -360 |
4 | 18 | 11-08-2009 | 0 | 450 | 0 | -450 |
4 | 86 | 11-08-2009 | 0 | 450 | 0 | -450 |
4 | 87 | 11-08-2009 | 0 | 360 | 0 | -360 |
4 | 88 | 11-08-2009 | 0 | 450 | 0 | -450 |
4 | 89 | 11-08-2009 | 0 | 450 | 0 | -450 |
4 | 90 | 11-08-2009 | 0 | 450 | 0 | -450 |
4 | 91 | 11-08-2009 | 0 | 390 | 0 | -390 |
4 | 92 | 11-08-2009 | 0 | 390 | 0 | -390 |
4 | 93 | 11-08-2009 | 0 | 390 | 0 | -390 |
4 | 94 | 11-08-2009 | 0 | 450 | 0 | -450 |
4 | 95 | 11-08-2009 | 0 | 450 | 0 | -450 |
4 | 121 | 11-08-2009 | 0 | 360 | 0 | -360 |
4 | 18 | 12-08-2009 | 0 | 450 | 0 | -450 |
4 | 86 | 12-08-2009 | 0 | 450 | 0 | -450 |
4 | 87 | 12-08-2009 | 0 | 360 | 0 | -360 |
4 | 88 | 12-08-2009 | 0 | 450 | 0 | -450 |
4 | 89 | 12-08-2009 | 0 | 450 | 0 | -450 |
4 | 90 | 12-08-2009 | 0 | 450 | 0 | -450 |
4 | 91 | 12-08-2009 | 0 | 390 | 0 | -390 |
4 | 92 | 12-08-2009 | 0 | 390 | 0 | -390 |
4 | 93 | 12-08-2009 | 0 | 480 | 0 | -480 |
4 | 94 | 12-08-2009 | 0 | 450 | 0 | -450 |
4 | 95 | 12-08-2009 | 0 | 450 | 0 | -450 |
4 | 121 | 12-08-2009 | 0 | 360 | 0 | -360 |
Ansat | Kunde | Projekt | sum | Fakturerbar | sort | dato |
---|---|---|---|---|---|---|
Janus Schmidt | Kunde ikke angivet | Projekt ikke angivet | 1 | Ja | 2009-02-04 | 2-2009 |
Janus Schmidt | Metalogic | Apps | 0,5 | Nej | 2009-02-05 | 2-2009 |
Janus Schmidt | SIS | evaluering | 1 | Ja | 2009-01-05 | 1-2009 |
Janus Schmidt | SIS | Evaluering | 1 | Ja | 2009-01-09 | 1-2009 |
Janus Schmidt | SIS | Evaluering | 2,5 | Ja | 2009-02-03 | 2-2009 |
Janus Schmidt | SIS | Evaluering | 0,5 | Ja | 2009-02-04 | 2-2009 |
Janus Schmidt | RegionH | Fundraising CMS | 2 | Ja | 2009-01-16 | 1-2009 |
Janus Schmidt | RegionH | Fundraising CMS | 2 | Ja | 2009-01-20 | 1-2009 |
Janus Schmidt | RegionH | Fundraising CMS | 1,5 | Ja | 2009-02-03 | 2-2009 |
Janus Schmidt | Metalogic | Intern | 4 | Nej | 2009-01-09 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 4 | Nej | 2009-01-13 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 6 | Nej | 2009-01-14 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 1 | Nej | 2009-01-15 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 2 | Nej | 2009-01-20 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 3,5 | Nej | 2009-01-22 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 4 | Nej | 2009-01-23 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 6 | Nej | 2009-01-26 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 5 | Nej | 2009-01-27 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 3,5 | Nej | 2009-01-28 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 1 | Nej | 2009-02-04 | 2-2009 |
Janus Schmidt | Metalogic | Intern | 0,5 | Nej | 2009-02-05 | 2-2009 |
Janus Schmidt | Metalogic | Intern | 0,5 | Nej | 2009-02-06 | 2-2009 |
Janus Schmidt | Metalogic | Intern | 2 | Nej | 2009-02-09 | 2-2009 |
Janus Schmidt | Metalogic | Intern | 0,5 | Ja | 2009-01-24 | 1-2009 |
Janus Schmidt | Metalogic | Intern | 0,5 | Ja | 2009-02-03 | 2-2009 |
Janus Schmidt | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-12 | 1-2009 |
Janus Schmidt | ISIS styregruppe | ISIS | 9 | Ja | 2009-01-22 | 1-2009 |
Janus Schmidt | ISIS styregruppe | ISIS | 1 | Ja | 2009-01-28 | 1-2009 |
Janus Schmidt | ISIS styregruppe | ISIS | 2 | Ja | 2009-01-30 | 1-2009 |
Janus Schmidt | ISIS styregruppe | ISIS | 4 | Ja | 2009-02-02 | 2-2009 |
Janus Schmidt | ISISk styregruppe | ISISK | 1 | Ja | 2009-01-05 | 1-2009 |
Janus Schmidt | ISISk styregruppe | ISISK | 1 | Ja | 2009-01-09 | 1-2009 |
Janus Schmidt | ISISk styregruppe | ISISK | 1 | Ja | 2009-02-04 | 2-2009 |
Janus Schmidt | ISISk styregruppe | ISISK | 1,5 | Ja | 2009-02-05 | 2-2009 |
Janus Schmidt | ISISk styregruppe | ISISK | 3 | Ja | 2009-02-09 | 2-2009 |
Janus Schmidt | Prøvehallen | Lokaleregistrering | 2 | Ja | 2009-01-23 | 1-2009 |
Janus Schmidt | USG | Support | 0,5 | Ja | 2009-02-03 | 2-2009 |
Janus Schmidt | Jur | Udvidelse af E-blanketter på jur | 6 | Ja | 2009-01-07 | 1-2009 |
Janus Schmidt | Jur | Udvidelse af E-blanketter på jur | 9 | Ja | 2009-01-08 | 1-2009 |
Janus Schmidt | Jur | Udvidelse af E-blanketter på jur | 1 | Ja | 2009-01-12 | 1-2009 |
Janus Schmidt | Jur | Udvidelse af E-blanketter på jur | 1 | Ja | 2009-01-15 | 1-2009 |
Janus Schmidt | Jur | Udvidelse af E-blanketter på jur | 3 | Ja | 2009-02-02 | 2-2009 |
Janus Schmidt | Jur | Udvidelse af E-blanketter på jur | 3 | Ja | 2009-02-03 | 2-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 4,5 | Nej | 2009-01-12 | 1-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 4 | Nej | 2009-01-13 | 1-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 1,5 | Nej | 2009-01-15 | 1-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 1 | Nej | 2009-01-18 | 1-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 2 | Nej | 2009-02-04 | 2-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 5 | Nej | 2009-02-06 | 2-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 10 | Nej | 2009-02-07 | 2-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 3 | Nej | 2009-02-09 | 2-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 1 | Ja | 2009-01-09 | 1-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 7 | Ja | 2009-01-16 | 1-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 2 | Ja | 2009-01-21 | 1-2009 |
Janus Schmidt | Styr På Tiden | Version 1.0 | 8,5 | Ja | 2009-02-05 | 2-2009 |
Jesper Nielsen | Klima og Energiministeriet | CO2 guiden | 0,75 | Ja | 2009-01-16 | 1-2009 |
Jesper Nielsen | RegionH | Fundraising CMS | 1 | Nej | 2009-01-30 | 1-2009 |
Jesper Nielsen | RegionH | Fundraising CMS | 0,75 | Nej | 2009-02-04 | 2-2009 |
Jesper Nielsen | Metalogic | Intern | 2,25 | Nej | 2009-01-02 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 0,5 | Nej | 2009-01-04 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 1 | Nej | 2009-01-05 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 3 | Nej | 2009-01-06 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 0,75 | Nej | 2009-01-07 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 2,5 | Nej | 2009-01-08 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 3 | Nej | 2009-01-09 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 0,5 | Nej | 2009-01-12 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 2,75 | Nej | 2009-01-14 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 1,75 | Nej | 2009-01-15 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 3 | Nej | 2009-01-16 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 1 | Nej | 2009-01-18 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 0,75 | Nej | 2009-01-19 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 1,5 | Nej | 2009-01-20 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 1,5 | Nej | 2009-01-21 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 0,5 | Nej | 2009-01-22 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 2 | Nej | 2009-01-23 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 3,5 | Nej | 2009-01-24 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 2 | Nej | 2009-01-25 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 1 | Nej | 2009-01-26 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 6 | Nej | 2009-01-27 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 5,25 | Nej | 2009-01-28 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 2 | Nej | 2009-01-29 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 2,75 | Nej | 2009-01-30 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 1,5 | Nej | 2009-02-02 | 2-2009 |
Jesper Nielsen | Metalogic | Intern | 4 | Nej | 2009-02-03 | 2-2009 |
Jesper Nielsen | Metalogic | Intern | 2 | Nej | 2009-02-04 | 2-2009 |
Jesper Nielsen | Metalogic | Intern | 1,5 | Ja | 2009-01-12 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 6 | Ja | 2009-01-26 | 1-2009 |
Jesper Nielsen | Metalogic | Intern | 0,75 | Ja | 2009-01-28 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 0,75 | Nej | 2009-01-08 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 0,5 | Nej | 2009-01-09 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 0,25 | Nej | 2009-01-15 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 0,5 | Nej | 2009-01-16 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 0,5 | Nej | 2009-01-19 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 0,5 | Nej | 2009-01-20 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 2,75 | Nej | 2009-01-22 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 0,25 | Nej | 2009-01-27 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 1 | Nej | 2009-01-28 | 1-2009 |
Jesper Nielsen | Styr På Tiden | Intern | 3,25 | Nej | 2009-01-29 | 1-2009 |
Jesper Nielsen | ISISk styregruppe | ISISK | 0,75 | Ja | 2009-01-06 | 1-2009 |
Jesper Nielsen | KU | Jobansøgningssystem | 0,25 | Ja | 2009-01-15 | 1-2009 |
Jesper Nielsen | KU | Jobansøgningssystem | 1,5 | Ja | 2009-01-16 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 0,25 | Nej | 2009-01-29 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 5 | Ja | 2009-01-05 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 2 | Ja | 2009-01-06 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 4 | Ja | 2009-01-07 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 2,5 | Ja | 2009-01-08 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 2 | Ja | 2009-01-09 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 3 | Ja | 2009-01-12 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 3 | Ja | 2009-01-13 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 3 | Ja | 2009-01-14 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 3 | Ja | 2009-01-15 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 3,25 | Ja | 2009-01-20 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 3 | Ja | 2009-01-21 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 0,75 | Ja | 2009-01-22 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 2 | Ja | 2009-01-23 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 0,5 | Ja | 2009-01-29 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 2 | Ja | 2009-01-30 | 1-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 3,25 | Ja | 2009-02-02 | 2-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 1,5 | Ja | 2009-02-03 | 2-2009 |
Jesper Nielsen | Prøvehallen | Lokaleregistrering | 3 | Ja | 2009-02-04 | 2-2009 |
Jesper Nielsen | SIS | SIS | 0,25 | Ja | 2009-01-12 | 1-2009 |
Jesper Nielsen | SIS | SIS | 1 | Ja | 2009-01-15 | 1-2009 |
Jesper Nielsen | SIS | SIS | 0,25 | Ja | 2009-01-16 | 1-2009 |
Jesper Nielsen | SIS | SIS | 1,25 | Ja | 2009-01-22 | 1-2009 |
Jesper Nielsen | Frydenlund | Support | 0,5 | Ja | 2009-01-15 | 1-2009 |
Jesper Nielsen | Macrodot | Support | 1,5 | Ja | 2009-01-04 | 1-2009 |
Jesper Nielsen | Macrodot | Support | 0,25 | Ja | 2009-01-30 | 1-2009 |
Jesper Nielsen | SIS | Syllabus | 0,5 | Ja | 2009-01-06 | 1-2009 |
Jesper Nielsen | SIS | Syllabus | 0,5 | Ja | 2009-01-12 | 1-2009 |
Jesper Nielsen | SIS | Syllabus | 2 | Ja | 2009-01-13 | 1-2009 |
Jesper Nielsen | SIS | Syllabus | 1 | Ja | 2009-01-14 | 1-2009 |
Jesper Nielsen | SIS | Syllabus | 1,5 | Ja | 2009-01-21 | 1-2009 |
Jesper Nielsen | SIS | Syllabus | 0,75 | Ja | 2009-01-22 | 1-2009 |
Jesper Nielsen | Jur | Udvidelse af E-blanketter på jur | 0,5 | Nej | 2009-02-04 | 2-2009 |
Jesper Nielsen | GoAgile | Website | 1 | Nej | 2009-02-02 | 2-2009 |
Jesper Nielsen | GoAgile | Website | 0,25 | Ja | 2009-01-12 | 1-2009 |
Jesper Nielsen | GoAgile | Website | 0,5 | Ja | 2009-01-23 | 1-2009 |
Jon Bertelsen | Frydenlund | 3g | 0,5 | Ja | 2009-01-26 | 1-2009 |
Jon Bertelsen | Frydenlund | 4g | 3,5 | Ja | 2009-01-30 | 1-2009 |
Jon Bertelsen | Frydenlund | 4g | 3 | Ja | 2009-02-10 | 2-2009 |
Jon Bertelsen | Kurs | CMS | 2 | Ja | 2009-01-27 | 1-2009 |
Jon Bertelsen | Klima og Energiministeriet | CO2 guiden | 0,25 | Ja | 2009-01-05 | 1-2009 |
Jon Bertelsen | Klima og Energiministeriet | CO2 guiden | 1 | Ja | 2009-01-26 | 1-2009 |
Jon Bertelsen | Klima og Energiministeriet | CO2 guiden | 3 | Ja | 2009-01-27 | 1-2009 |
Jon Bertelsen | Klima og Energiministeriet | CO2 guiden | 4 | Ja | 2009-01-28 | 1-2009 |
Jon Bertelsen | Klima og Energiministeriet | CO2 guiden | 0,25 | Ja | 2009-02-02 | 2-2009 |
Jon Bertelsen | RegionH | Fundraising CMS | 0,5 | Ja | 2009-01-30 | 1-2009 |
Jon Bertelsen | RegionH | Fundraising CMS | 1,5 | Ja | 2009-02-10 | 2-2009 |
Jon Bertelsen | Metalogic | Intern | 4 | Nej | 2009-01-09 | 1-2009 |
Jon Bertelsen | Metalogic | Intern | 1,5 | Nej | 2009-01-12 | 1-2009 |
Jon Bertelsen | Metalogic | Intern | 0,75 | Nej | 2009-01-13 | 1-2009 |
Jon Bertelsen | Metalogic | Intern | 0,75 | Nej | 2009-01-14 | 1-2009 |
Jon Bertelsen | Metalogic | Intern | 1,25 | Nej | 2009-01-21 | 1-2009 |
Jon Bertelsen | Metalogic | Intern | 2,5 | Nej | 2009-01-27 | 1-2009 |
Jon Bertelsen | Metalogic | Intern | 0,75 | Nej | 2009-01-28 | 1-2009 |
Jon Bertelsen | Metalogic | Intern | 0,5 | Nej | 2009-01-29 | 1-2009 |
Jon Bertelsen | Metalogic | Intern | 2 | Nej | 2009-01-30 | 1-2009 |
Jon Bertelsen | Metalogic | Intern | 1,75 | Nej | 2009-02-02 | 2-2009 |
Jon Bertelsen | Metalogic | Intern | 0,5 | Ja | 2009-01-28 | 1-2009 |
Jon Bertelsen | Styr På Tiden | Intern | 0,5 | Nej | 2009-01-08 | 1-2009 |
Jon Bertelsen | Styr På Tiden | Intern | 0,5 | Nej | 2009-01-09 | 1-2009 |
Jon Bertelsen | Styr På Tiden | Intern | 1,5 | Nej | 2009-01-13 | 1-2009 |
Jon Bertelsen | Styr På Tiden | Intern | 6 | Nej | 2009-01-29 | 1-2009 |
Jon Bertelsen | Styr På Tiden | Intern | 0,5 | Nej | 2009-02-02 | 2-2009 |
Jon Bertelsen | Styr På Tiden | Intern | 1 | Nej | 2009-02-10 | 2-2009 |
Jon Bertelsen | Styr På Tiden | Intern | 3 | Ja | 2009-01-07 | 1-2009 |
Jon Bertelsen | Nat | ISISløn | 0,25 | Ja | 2009-01-12 | 1-2009 |
Jon Bertelsen | Fyrtårnet | IT-konsulent timer | 0,25 | Ja | 2009-01-28 | 1-2009 |
Jon Bertelsen | Fyrtårnet | IT-konsulent timer | 1 | Ja | 2009-01-30 | 1-2009 |
Jon Bertelsen | Prøvehallen | Lokaleregistrering | 1,5 | Ja | 2009-01-12 | 1-2009 |
Jon Bertelsen | Prøvehallen | Lokaleregistrering | 0,5 | Ja | 2009-01-14 | 1-2009 |
Jon Bertelsen | Prøvehallen | Lokaleregistrering | 0,25 | Ja | 2009-01-29 | 1-2009 |
Jon Bertelsen | Prøvehallen | Lokaleregistrering | 0,5 | Ja | 2009-01-30 | 1-2009 |
Jon Bertelsen | Frydenlund | Support | 0,25 | Ja | 2009-01-07 | 1-2009 |
Jon Bertelsen | Frydenlund | Support | 0,25 | Ja | 2009-01-14 | 1-2009 |
Jon Bertelsen | Macrodot | Support | 0,5 | Ja | 2009-01-28 | 1-2009 |
Jon Bertelsen | Macrodot | Support | 0,25 | Ja | 2009-01-30 | 1-2009 |
Jon Bertelsen | Styr På Tiden | Version 1.0 | 1 | Nej | 2009-01-09 | 1-2009 |
Jon Bertelsen | GoAgile | Website | 2 | Ja | 2009-01-12 | 1-2009 |
Jon Bertelsen | GoAgile | Website | 4 | Ja | 2009-01-13 | 1-2009 |
Jon Bertelsen | GoAgile | Website | 4,5 | Ja | 2009-01-14 | 1-2009 |
Jon Bertelsen | GoAgile | Website | 4 | Ja | 2009-01-21 | 1-2009 |
Jon Bertelsen | GoAgile | Website | 0,5 | Ja | 2009-01-29 | 1-2009 |
Jon Bertelsen | GoAgile | Website | 1 | Ja | 2009-01-30 | 1-2009 |
Jon Bertelsen | GoAgile | Website | 3,5 | Ja | 2009-02-02 | 2-2009 |
Jon Bertelsen | Klima og Energiministeriet | Website crawler | 0,75 | Ja | 2009-01-29 | 1-2009 |
Morten Kjerulff | Frydenlund | 2g | 0,5 | Ja | 2009-02-05 | 2-2009 |
Morten Kjerulff | Metalogic | Apps | 0,5 | Nej | 2009-01-27 | 1-2009 |
Morten Kjerulff | Metalogic | Apps | 0,5 | Nej | 2009-02-09 | 2-2009 |
Morten Kjerulff | Metalogic | Apps | 3 | Ja | 2009-02-10 | 2-2009 |
Morten Kjerulff | SIS | Evaluering | 0,5 | Ja | 2009-02-06 | 2-2009 |
Morten Kjerulff | RegionH | Fundraising CMS | 1 | Ja | 2009-01-12 | 1-2009 |
Morten Kjerulff | RegionH | Fundraising CMS | 2,5 | Ja | 2009-01-19 | 1-2009 |
Morten Kjerulff | RegionH | Fundraising CMS | 1 | Ja | 2009-01-20 | 1-2009 |
Morten Kjerulff | RegionH | Fundraising CMS | 0,5 | Ja | 2009-01-23 | 1-2009 |
Morten Kjerulff | RegionH | Fundraising CMS | 2,5 | Ja | 2009-01-25 | 1-2009 |
Morten Kjerulff | RegionH | Fundraising CMS | 2 | Ja | 2009-02-03 | 2-2009 |
Morten Kjerulff | RegionH | Fundraising CMS | 0,5 | Ja | 2009-02-09 | 2-2009 |
Morten Kjerulff | RegionH | Fundraising CMS | 2 | Ja | 2009-02-10 | 2-2009 |
Morten Kjerulff | Metalogic | Intern | 1 | Nej | 2009-01-03 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 1 | Nej | 2009-01-06 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 4 | Nej | 2009-01-07 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 0,5 | Nej | 2009-01-08 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 1 | Nej | 2009-01-12 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 0,5 | Nej | 2009-01-13 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 0,5 | Nej | 2009-01-15 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 6 | Nej | 2009-01-21 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 0,5 | Nej | 2009-01-24 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 2 | Nej | 2009-01-25 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 7,5 | Nej | 2009-01-26 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 3,5 | Nej | 2009-01-27 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 4 | Nej | 2009-01-28 | 1-2009 |
Morten Kjerulff | Metalogic | Intern | 0,5 | Nej | 2009-02-02 | 2-2009 |
Morten Kjerulff | Metalogic | Intern | 1,5 | Nej | 2009-02-03 | 2-2009 |
Morten Kjerulff | Metalogic | Intern | 1 | Nej | 2009-02-04 | 2-2009 |
Morten Kjerulff | Metalogic | Intern | 1,5 | Nej | 2009-02-05 | 2-2009 |
Morten Kjerulff | Metalogic | Intern | 1,5 | Nej | 2009-02-06 | 2-2009 |
Morten Kjerulff | Metalogic | Intern | 2,5 | Nej | 2009-02-09 | 2-2009 |
Morten Kjerulff | Metalogic | Intern | 1 | Nej | 2009-02-10 | 2-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-04 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-06 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-07 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 3 | Ja | 2009-01-12 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-13 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-19 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 1,5 | Ja | 2009-01-23 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-24 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 1 | Ja | 2009-01-25 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-26 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-27 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 1 | Ja | 2009-01-28 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-01-29 | 1-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-02-02 | 2-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-02-06 | 2-2009 |
Morten Kjerulff | ISIS styregruppe | ISIS | 0,5 | Ja | 2009-02-09 | 2-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 0,5 | Ja | 2009-01-06 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 1 | Ja | 2009-01-11 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 1 | Ja | 2009-01-13 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 0,5 | Ja | 2009-01-14 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 1 | Ja | 2009-01-15 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 0,5 | Ja | 2009-01-16 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 0,5 | Ja | 2009-01-18 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 1,5 | Ja | 2009-01-19 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 0,5 | Ja | 2009-01-21 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 0,5 | Ja | 2009-01-24 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 1,5 | Ja | 2009-01-25 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 1,5 | Ja | 2009-01-27 | 1-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 0,5 | Ja | 2009-02-02 | 2-2009 |
Morten Kjerulff | ISISk styregruppe | ISISK | 1,5 | Ja | 2009-02-09 | 2-2009 |
Morten Kjerulff | Nat | ISISløn | 0,5 | Ja | 2009-01-12 | 1-2009 |
Morten Kjerulff | Nat | ISISløn | 0,5 | Ja | 2009-01-14 | 1-2009 |
Morten Kjerulff | Nat | ISISløn | 0,5 | Ja | 2009-01-15 | 1-2009 |
Morten Kjerulff | Prøvehallen | Lokaleregistrering | 0,5 | Ja | 2009-02-03 | 2-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 0,5 | Nej | 2009-01-07 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 4,5 | Nej | 2009-01-08 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 1 | Nej | 2009-01-13 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 5 | Nej | 2009-01-16 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 5,5 | Nej | 2009-01-17 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 2,5 | Nej | 2009-01-18 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 0,5 | Nej | 2009-01-19 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 1,5 | Nej | 2009-01-20 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 0,5 | Nej | 2009-01-21 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 3 | Nej | 2009-01-28 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 0 | Nej | 2009-01-29 | 1-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 0,5 | Nej | 2009-02-02 | 2-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 2 | Nej | 2009-02-03 | 2-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 5 | Nej | 2009-02-04 | 2-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 3,5 | Nej | 2009-02-05 | 2-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 3 | Nej | 2009-02-06 | 2-2009 |
Morten Kjerulff | Styr På Tiden | Version 1.0 | 0,5 | Nej | 2009-02-10 | 2-2009 |