Index: grid-examples/src/test/java/com/inmethod/grid/examples/Start.java
===================================================================
--- grid-examples/src/test/java/com/inmethod/grid/examples/Start.java	(revision 3844)
+++ grid-examples/src/test/java/com/inmethod/grid/examples/Start.java	(working copy)
@@ -18,7 +18,7 @@
 
 		WebAppContext bb = new WebAppContext();
 		bb.setServer(server);
-		bb.setContextPath("/");
+		bb.setContextPath("/xxx");
 		bb.setWar("src/main/webapp");
 
 		
Index: grid-examples/src/main/java/com/inmethod/grid/examples/pages/datagrid/SimpleLink.java
===================================================================
--- grid-examples/src/main/java/com/inmethod/grid/examples/pages/datagrid/SimpleLink.java	(revision 0)
+++ grid-examples/src/main/java/com/inmethod/grid/examples/pages/datagrid/SimpleLink.java	(revision 0)
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.inmethod.grid.examples.pages.datagrid;
+
+import org.apache.wicket.markup.html.link.ExternalLink;
+import org.apache.wicket.markup.html.link.Link;
+import org.apache.wicket.markup.html.panel.Panel;
+import org.apache.wicket.model.IModel;
+
+
+public class SimpleLink extends Panel
+{
+  public SimpleLink(final String id, final IModel model )
+  {
+    super(id);
+
+    add(new ExternalLink("link", "http://www.google.com/search?q="+model.getObject(), 
+        "[link]"));
+  }
+}
Index: grid-examples/src/main/java/com/inmethod/grid/examples/pages/datagrid/SimpleDataGridPage.java
===================================================================
--- grid-examples/src/main/java/com/inmethod/grid/examples/pages/datagrid/SimpleDataGridPage.java	(revision 3844)
+++ grid-examples/src/main/java/com/inmethod/grid/examples/pages/datagrid/SimpleDataGridPage.java	(working copy)
@@ -3,10 +3,17 @@
 import java.util.ArrayList;
 import java.util.List;
 
+import org.apache.wicket.Component;
+import org.apache.wicket.markup.html.WebMarkupContainer;
+import org.apache.wicket.model.IModel;
 import org.apache.wicket.model.ResourceModel;
 
 import com.inmethod.grid.IGridColumn;
+import com.inmethod.grid.IRenderable;
+import com.inmethod.grid.SizeUnit;
+import com.inmethod.grid.column.AbstractColumn;
 import com.inmethod.grid.column.PropertyColumn;
+import com.inmethod.grid.common.AbstractGrid;
 import com.inmethod.grid.datagrid.DataGrid;
 import com.inmethod.grid.datagrid.DefaultDataGrid;
 import com.inmethod.grid.examples.pages.BaseExamplePage;
@@ -27,6 +34,16 @@
 		List<IGridColumn> columns = new ArrayList<IGridColumn>();
 		
 		columns.add(new PropertyColumn(new ResourceModel("id"), "id"));
+		columns.add(new AbstractColumn( "link", new ResourceModel("id") ) {
+
+      @Override
+      public Component newCell(WebMarkupContainer parent, String componentId, IModel rowModel) {
+        return new SimpleLink( componentId, rowModel );
+      }
+      
+      
+		  
+		});
 		columns.add(new PropertyColumn(new ResourceModel("firstName"), "firstName", "firstName"));
 		columns.add(new PropertyColumn(new ResourceModel("lastName"), "lastName", "lastName"));
 		columns.add(new PropertyColumn(new ResourceModel("homePhone"), "homePhone"));
Index: grid-examples/src/main/java/com/inmethod/grid/examples/pages/datagrid/SimpleLink.html
===================================================================
--- grid-examples/src/main/java/com/inmethod/grid/examples/pages/datagrid/SimpleLink.html	(revision 0)
+++ grid-examples/src/main/java/com/inmethod/grid/examples/pages/datagrid/SimpleLink.html	(revision 0)
@@ -0,0 +1,5 @@
+<wicket:panel>
+
+  <a wicket:id="link" href="#">to google...</a>
+  
+</wicket:panel>
\ No newline at end of file
