<%@ Page Language="VB" ResponseEncoding="iso-8859-1" Debug="true" %> <%@ Register TagPrefix="Rico" TagName="LiveGrid" Src="../../plugins/dotnet/LiveGrid.ascx" %> <%@ Register TagPrefix="Rico" TagName="Column" Src="../../plugins/dotnet/GridColumn.ascx" %> Rico LiveGrid-Example 2
This example demonstrates a LiveGrid that uses Rico.TableColumn.HighlightCell to highlight all rows where the customer id is 'HANAR'.
var CustId='HANAR';
var CustIdCol=1;
Rico.onLoad( function() {
  var opts = {  
  columnSpecs: [
{control:new Rico.TableColumn.HighlightCell(CustIdCol,CustId,'red','yellow')},
{control:new Rico.TableColumn.HighlightCell(CustIdCol,CustId,'red','yellow')},
...