or
Hi
How can we have navigation like on the left on this page http://www.gordonramsay.com/thesavoygrill/theatre/Pre_theatre where navigation items have different attributes even when they are not selected or hovered over?
Thanks
Regards
//Changing the backcolor so that rows w/ the same order number show the same color if (e.Item is GridDataItem && e.Item is GridTableRow) { int rowNumber = e.Item.DataSetIndex; if (rowNumber >= 1) { GridDataItem previousRow = RadGrid1.Items[rowNumber - 1]; GridDataItem currentRow = (GridDataItem)e.Item; string prevMilestoneOrder = previousRow["Order"].Text; //Set current row back color to previous row back color if they have the same order if (prevMilestoneOrder.Equals(currentRow["Order"].Text)) currentRow.BackColor = previousRow.BackColor; //<------- previousRow.BackColor does not exist yet } }

<telerik:GridTemplateColumn ReadOnly="true" AllowFiltering="false" GroupByExpression="CloseOutType Group By CloseOutType" DataField="CloseOutType" SortExpression="CloseOutType" > <HeaderTemplate> <table> <tr> <td style="width:20%"><asp:Image ID="imgCloseOutType" ImageUrl="~/Images/closeout_type.png" runat="server" /></td> <td style="width:80%"> <asp:Button ID="btnheaderCloseOutType" Title="Sort by Interim/Workbook" runat="server" CommandName="Sort" CssClass="LabelViewForButton" CommandArgument="CloseOutType" Text="Interim/Workbook" /> </td> </tr> </table> </HeaderTemplate> <ItemTemplate> <div style="text-align:center"> <asp:Label ID="lblCloseOutType" runat="server" Text='<%# eval("CloseOutType") %>'></asp:Label> </div> </ItemTemplate> </telerik:GridTemplateColumn>/*sorting, reordering*/.RadGrid_Vista .rgHeader .rgSortAsc{ background-position:3px -248px; height:10px; }.RadGrid_Vista .rgHeader .rgSortDesc{ background-position:3px -198px; height:10px;}.GridReorderTop_Vista,.GridReorderBottom_Vista{ width:9px !important; height:9px !important; margin-left:-5px; background:0 0 no-repeat url('Grid/sprite.gif');}.GridReorderBottom_Vista{ background-position:0 -50px;}<telerik:RadWindowManager ID="RadWindowManagerMaster" runat="server" OnClientDragEnd="WindowMoved" PreserveClientState="true" Behaviors="Close, Move" Behavior="Close, Move"> <Windows> <telerik:RadWindow ID="BinAssignmentDialog" runat="server" Title="Bin Assignment" Height="384px" Width="530px" Left="400px" ReloadOnShow="true" OnClientDragEnd="WindowMoved" ShowContentDuringLoad="false" Modal="true" VisibleStatusbar="false" Top="80px" /> </Windows></telerik:RadWindowManager>function ShowBinAssignmentDialog(bintolotid) { var oWndMgr = $find("<%= RadWindowManagerMaster.ClientID %>"); var oWnd = oWndMgr.Open("BinAssignmentDetail.aspx?btl=" + bintolotid, "BinAssignmentDialog"); var x = readCookie('BinAssignmentDialogLeft'); var y = readCookie('BinAssignmentDialogTop'); if (x) { oWnd.moveTo(x, y); } else { oWnd.moveTo(80, 80); // move to top left } return false;}function WindowMoved(sender, args) { debugger; window.setTimeout(function () { SaveSizeAndPosition(sender, args); }, 10);}