Holger Knublauch

Log search progress

This diff is collapsed. Click to expand it.
......@@ -163,6 +163,16 @@ a:active.appFormHeaderLink {
border-style: solid;
}
.appIconConcept {
background-image: url(images/appIcons.png) !important;
background-position: 0 0 !important;
}
.appIconClass {
background-image: url(images/appIcons.png) !important;
background-position: -16px 0px !important;
}
div.appTop {text-align:right}
div.appTop div {display:inline; white-space:nowrap}
div.appTop div.appLeft {float:left}
......
......@@ -117,10 +117,14 @@ function appInitAutoComplete(id, hiddenId, link) {
/**
* Turns an input element with a given widget id into a jQuery datepicker.
* @param id the uid of the widget
* @param altId (optional) the id of the hidden widget
*/
function appInitDatePicker(id) {
function appInitDatePicker(id, altId) {
if(!altId) {
altId = 'new-' + id;
}
$('#dateEditor' + id).datepicker({
altField: '#new-' + id,
altField: '#' + altId,
altFormat: 'yy-mm-dd',
dateFormat: 'yy-mm-dd',
});
......
......@@ -77,7 +77,10 @@ log:LogBrowser
ui:childIndex 0
] ;
ui:childIndex 0 ;
ui:queryGraph <http://www.reportinghub.no/system/schema/logging>
ui:queryGraph
[ rdf:type ui:graphWithImports ;
sp:arg1 <http://www.reportinghub.no/system/schema/logging>
]
] ;
ui:child
[ rdf:type html:Div ;
......@@ -151,7 +154,7 @@ log:LogEventClassTreeDataProvider
[ sp:varName "label"^^xsd:string
]
] [ rdf:type sp:Bind ;
sp:expression "lib/app/images/owlClass.gif" ;
sp:expression "appIconClass" ;
sp:variable
[ sp:varName "icon"^^xsd:string
]
......@@ -192,7 +195,7 @@ log:LogEventClassTreeDataProvider
[ sp:varName "leaf"^^xsd:string
]
] [ rdf:type sp:Bind ;
sp:expression "lib/app/images/owlClass.gif" ;
sp:expression "appIconClass" ;
sp:variable
[ sp:varName "icon"^^xsd:string
]
......