Partial fix for FELIX-2286 /Various rendering issues with IE/
https://issues.apache.org/jira/browse/FELIX-2286

fixes component and services plugins

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@934380 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/resources/templates/components.html b/webconsole/src/main/resources/templates/components.html
index b995d31..a574b3e 100644
--- a/webconsole/src/main/resources/templates/components.html
+++ b/webconsole/src/main/resources/templates/components.html
@@ -5,9 +5,6 @@
 var scrData = ${__data__};
 // i18n
 var i18n = {
-	'Enable'           : '${scr.action.enable}',
-	'Disable'          : '${scr.action.disable}',
-	'Configure'        : '${scr.action.configure}',
 	'Bundle'           : '${scr.prop.bundle}',
 	'Default State'    : '${scr.prop.defstate}',
 	'Activation'       : '${scr.prop.activation}',
@@ -41,7 +38,20 @@
 		</tr>
 	</thead>
 	<tbody>
-		<tr><td colspan="4">&nbsp;</td></tr>
+		<tr>
+			<td>&nbsp;</td> <!-- id -->
+			<td> <!-- name with arrow -->
+				<div class="bIcon ui-icon ui-icon-triangle-1-e" style="float:left" title="${scr.details.tip}">&nbsp;</div>
+			</td> 
+			<td>&nbsp;</td> <!-- status -->
+			<td>
+				<ul class="icons">
+					<li class="dynhover ui-helper-hidden" title="${scr.action.enable}"><span class="ui-icon ui-icon-play">&nbsp;</span></li>
+					<li class="dynhover ui-helper-hidden" title="${scr.action.disable}"><span class="ui-icon ui-icon-stop">&nbsp;</span></li>
+					<li class="dynhover ui-helper-hidden" title="${scr.action.configure}"><span class="ui-icon ui-icon-wrench">&nbsp;</span></li>
+				</ul>
+			</td>
+		</tr>
 	</tbody>
 	</table>
 </div> <!-- end data available -->
diff --git a/webconsole/src/main/resources/templates/services.html b/webconsole/src/main/resources/templates/services.html
index bb84391..3919a65 100644
--- a/webconsole/src/main/resources/templates/services.html
+++ b/webconsole/src/main/resources/templates/services.html
@@ -13,7 +13,7 @@
 // data
 var bundlePath = "${bundlePath}";
 var drawDetails = ${drawDetails};
-renderServices(${__data__});
+var data = ${__data__};
 // ]]>
 </script>
 
@@ -30,7 +30,13 @@
 		</tr>
 	</thead>
 	<tbody>
-		<tr><td colspan="3">dummy</td></tr>
+		<tr>
+			<td>
+				<div class="bIcon ui-icon ui-icon-triangle-1-e" style="float:left" title="${services.details.tip}">&nbsp;</div>
+			</td>
+			<td>&nbsp;</td><!-- type -->
+			<td>&nbsp;</td><!-- bundle -->
+		</tr>
 	</tbody>
 </table>