or
Private Sub AddTab(ByVal tabName As String) Dim tab As RadTab = New RadTab tab.Text = tabName radTabStrip.Tabs.Add(tab) Dim pageView As RadPageView = New RadPageView pageView.ID = tabName 'pageView. RadMultiPage.PageViews.Add(pageView) radTabStrip.SelectedIndex = tab.Index radTabStrip.DataBind() End SubI have a numeric column in a grid that receives numbers from a datatable. The cell is conditionally formatted during OnItemDataBound to change color depending on the how larger the number in the cell is.
I would like to format the number in the column regardless of how larger it is so that it displays , thousands separator. However, when I use a DataFormatString (either in code or via a PreRender method) an exception is thrown because the number no long matches (1000 vs 1,000).
How can I properly format the data in the column while allowing it to be conditionally formated?

function setDate() { var picker = $find('<%= dtStart.ClientID %>'); var picker2 = $find('<%= dtEnd.ClientID %>'); picker2.set_selectedDate = picker.get_selectedDate;}.profileBlue { width: 126px; } .profileBlue .top { width: 126px; height: 8px; background: url(/images/profileBlueTop.jpg) no-repeat top left; } .profileBlue .middle { width: 106px; background-color: #cde6ec; height: auto; padding: 0 10px 0 10px; word-wrap: break-word; color: #323232; line-height: 20px; }.RadDock .rdLeft, .RadDock .rdRight, .RadDock .rdBottom, .RadDock .rdTop { display: none !important; } .RadDock .rdContent { background-color: Silver; } .RadDockZone { width: 140px; } </style> <script type="text/javascript"> function SetHandleDock(dock, args) { dock.set_handle(document.getElementById("Handle_" + dock.get_id())); } </script><telerik:RadDockZone ID="RadDockZone1" runat="server"> <telerik:RadDock ID="RadDock1" runat="server" DockHandle="None" OnClientInitialize="SetHandleDock" Index="0" EnableRoundedCorners="True" DockMode="Docked"> <ContentTemplate> <div class="profileBlue"> <div id="Handle_RadDock1" style="cursor: move;" class="top"> </div> <div class="middle"> - - - - - - - my code --- </div> </div></ContentTemplate></telerik:RadDock>