﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - Problem with setting WebGrid's Culture</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Problem-with-setting-WebGrids-Culture/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Problem with setting WebGrid's Culture</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Problem-with-setting-WebGrids-Culture/</link><pubDate>Thu, 13 Jan 2011 21:16:15 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;You can obtain the latest hotfixes by installing WebUIStudio2010R2. Unfortunately, the release note did not have this information. You reported the issue after we release the product which in the latest, the issue could not be replicated. So, we could not note this.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Problem with setting WebGrid's Culture</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Problem-with-setting-WebGrids-Culture/</link><pubDate>Thu, 13 Jan 2011 09:48:58 GMT</pubDate><dc:creator>SAgosto</dc:creator><description>&lt;blockquote&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;Please read my previous post. Please ensure that you use the latest hotfixes. You can see in my attachment video. All the fields show alert in format dd-MMM-yyyy. There are nothing wrong with the sample when I ran it unless I am missing something.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;It must be an issue with the 406 release. Where can I get the hotfix? I checked Support page and the UpdateManager and just the 406 comes across. Also, do the 416 release's release notes note that this was a fixed bug?&lt;/p&gt;</description></item><item><title>Problem with setting WebGrid's Culture</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Problem-with-setting-WebGrids-Culture/</link><pubDate>Tue, 11 Jan 2011 21:16:20 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;Please read my previous post. Please ensure that you use the latest hotfixes. You can see in my attachment video. All the fields show alert in format dd-MMM-yyyy. There are nothing wrong with the sample when I ran it unless I am missing something. &lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Problem with setting WebGrid's Culture</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Problem-with-setting-WebGrids-Culture/</link><pubDate>Tue, 11 Jan 2011 13:16:03 GMT</pubDate><dc:creator>SAgosto</dc:creator><description>&lt;blockquote&gt;&lt;p&gt;Hello Shawn,&lt;/p&gt;&lt;p&gt;You can set the culture in IntializeLayout or in PageLoad event.&amp;nbsp;Please see the attached sample.&lt;br /&gt;In my test, I am using WebGrid 7 build 416 and WebUIFramework build 767. However, I could not replicate the issue. So, would you mind to send us a simple runable sample that replicates the issue?&lt;/p&gt;&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;I have attached a screen shot showing 3 DateFields with an alert box showing the field's value which is 1/5/2011, 1-5-2011, and 1.5.2011 respectfully. You will notice the first field is not rendered properly (05-Jan-2011) but the others are 01-May-2011. I have also enclosed both the client and server-side code.&lt;/p&gt;&lt;pre&gt;&amp;lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="UKCultureBug.aspx.cs" Inherits="UKCultureBug" %&amp;gt;
&amp;lt;%@ Register TagPrefix="iswebgrid" Namespace="ISNet.WebUI.WebGrid" Assembly="ISNet.WebUI.WebGrid" %&amp;gt;

&amp;lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" &amp;gt;
&amp;lt;HTML&amp;gt;
	&amp;lt;HEAD runat=server&amp;gt;
		&amp;lt;title&amp;gt;UKCultureBug&amp;lt;/title&amp;gt;
		&amp;lt;meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"&amp;gt;
		&amp;lt;meta name="CODE_LANGUAGE" Content="C#"&amp;gt;
		&amp;lt;meta name="vs_defaultClientScript" content="JavaScript"&amp;gt;
		&amp;lt;meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"&amp;gt;
		 
          &amp;lt;script type="text/javascript"&amp;gt;
              function DoRowSelect(controlId, tblName, rowIndex, rowEl)
               {
                  var grid = ISGetObject(controlId);
                  var table = grid.Tables[tblName];
                  var currentRow = table.ToRowObject(rowEl); // convert from element to WebGridRow object.
                  var cells = currentRow.GetCells();
                  var field1 = cells.GetNamedItem("ClaimDateOfLossFrom");                  
                  var field2 = cells.GetNamedItem("ClaimAdvisedDate");
                  var field3 = cells.GetNamedItem("DateOfEvent");
                  window.alert(field1.Value &amp;#43; " - " &amp;#43; field2.Value &amp;#43; " - " &amp;#43; field3.Value);
              }
          &amp;lt;/script&amp;gt;
	
	&amp;lt;/HEAD&amp;gt;
	&amp;lt;body MS_POSITIONING="GridLayout"&amp;gt;
		&amp;lt;form id="Form1" method="post" runat="server"&amp;gt;
		
			&amp;lt;iswebgrid:webgrid id=WebGrid1 runat="server"
			    DefaultStyleMode="Elegant"
                Height="100%" Width="100%" UseDefaultStyle="True" EnableViewState="false" ViewStateStorage="None"
                OnInitializeDataSource="WebGrid1_OnInitializeDataSource" OnInitializeLayout="WebGrid1_OnInitializeLayout"
                
                 
              &amp;gt;
                &amp;lt;LayoutSettings AllowBatchUpdate="true" BatchUpdateSettings-PromptUnsavedChanges="false" NewRowLostFocusAction="AlwaysUpdate"
                    AllowAddNew="Yes" AllowEdit="Yes" AllowDelete="Yes" EditOnClick="True" AutoHeight="false" RowHeightDefault="22px"
                    AutoWidth="false" AllowColumnFreezing="Yes" AllowExport="No" AllowFilter="No"
                    AllowSelectColumns="Yes" AllowSorting="No" AlwaysShowHelpButton="False" ApplyFiltersKey="Enter"
                    CellPaddingDefault="0" FilterBarVisible="True" HideColumnsWhenGrouped="Default"
                    InProgressUIBehavior="ChangeCursorToHourGlass"
                    PagingExportMode="ExportAllData" PagingMode="VirtualLoad" ResetNewRowValuesOnError="False"
                    ShowFilterStatus="True" VerboseEditingInformation="False" VirtualPageSize="200"&amp;gt;
                    &amp;lt;ClientSideEvents OnRowSelect="DoRowSelect"  /&amp;gt;
                    &amp;lt;FrameStyle&amp;gt;
                        &amp;lt;BorderSettings&amp;gt;
                            &amp;lt;Top Style="none" /&amp;gt;
                            &amp;lt;Bottom Style="none" /&amp;gt;
                            &amp;lt;Left Color="#6593cf" Style="solid" Width="1" /&amp;gt;
                            &amp;lt;Right Color="#6593cf" Style="solid" Width="1" /&amp;gt;
                        &amp;lt;/BorderSettings&amp;gt;
                    &amp;lt;/FrameStyle&amp;gt;
                    &amp;lt;HeaderStyle CssClass="WebGridHeaderStyle" /&amp;gt;
                    &amp;lt;StatusBarStyle CssClass="WebGridStatusBarStyle" /&amp;gt;
                    &amp;lt;StatusBarCommandStyle Active-CssClass="WebGridStatusBarCommandStyleActive" Normal-CssClass="WebGridStatusBarCommandStyleNormal"
                        Over-CssClass="WebGridStatusBarCommandStyleOver"&amp;gt;
                        &amp;lt;Normal CssClass="WebGridStatusBarCommandStyleNormal" /&amp;gt;
                        &amp;lt;Over CssClass="WebGridStatusBarCommandStyleOver" /&amp;gt;
                        &amp;lt;Active CssClass="WebGridStatusBarCommandStyleActive" /&amp;gt;
                    &amp;lt;/StatusBarCommandStyle&amp;gt;
                    &amp;lt;FilterRowStyle CssClass="WebGridFilterRowStyle" /&amp;gt;
                    &amp;lt;PreviewRowStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;RowStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;QuickFilterBarStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;RowHeaderStyle CssClass="WebGridRowHeaderStyle" /&amp;gt;
                    &amp;lt;SelectedRowStyle CssClass="WebGridSelectedRowStyle" /&amp;gt;
                    &amp;lt;EditFocusCellStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;FocusCellStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;LostFocusRowStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;NewRowStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;SortedColumnStyle CssClass="WebGridSortedColumnStyle" /&amp;gt;
                    &amp;lt;AlternatingRowStyle CssClass="WebGridAlternatingRowStyle" /&amp;gt;
                    &amp;lt;EditTextboxStyle CssClass="WebGridEditTextboxStyle" /&amp;gt;
                    &amp;lt;FreezePaneSettings AbsoluteScrolling="True" ActiveFrozenColumns="3" MaxFrozenColumns="3"
                        ShowInContextMenu="False" ShowSplitterLine="False" SplitterLineColor="ActiveBorder"
                        SplitterLineWidth="1" /&amp;gt;
                &amp;lt;/LayoutSettings&amp;gt;
                &amp;lt;RootTable Caption="Claims Transaction" DataKeyField="UniqueID" ColumnFooters="Yes"&amp;gt; 
					  	 		&amp;lt;Columns&amp;gt;	
					  	 		  &amp;lt;ISWebGrid:WebGridColumn Caption="UniqueID" Name="UniqueID" DataType="System.Integer"
                                                 ColumnType="Text" EditType="NoEdit" NewRowEditType="NoEdit" FilterEditType="NoEdit"
                                                 Width="0px" Visible="false"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        
 &amp;lt;ISWebGrid:WebGridColumn Caption="Date of Loss" Name="ClaimDateOfLossFrom" DataMember="ClaimDateOfLossFrom"
                            DataFormatString="dd-MMM-yyyy" DataType="System.String" ColumnType="Text" EditType="CalendarCombo"
                            NewRowEditType="CalendarCombo" FilterEditType="CalendarCombo" Width="75px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                                                                                                                
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Reported Date" Name="ClaimAdvisedDate" DataMember="ClaimAdvisedDate"
                            DataFormatString="dd-MMM-yyyy" DataType="System.String" ColumnType="Text" EditType="CalendarCombo"
                            NewRowEditType="CalendarCombo" FilterEditType="CalendarCombo" Width="90px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;   
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Event Date" Name="DateOfEvent" DataMember="DateOfEvent"
                            DataFormatString="dd-MMM-yyyy" DataType="System.String" ColumnType="Text" EditType="CalendarCombo"
                            NewRowEditType="CalendarCombo" FilterEditType="CalendarCombo" Width="90px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;

					&amp;lt;/Columns&amp;gt;
				&amp;lt;/RootTable&amp;gt;
			&amp;lt;/iswebgrid:webgrid&amp;gt;
			 
		&amp;lt;/form&amp;gt;
	&amp;lt;/body&amp;gt;
&amp;lt;/HTML&amp;gt;
&lt;pre&gt;using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using ISNet.WebUI.WebGrid;

public partial class UKCultureBug : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
    }

    protected void WebGrid1_OnInitializeLayout(object sender, ISNet.WebUI.WebGrid.LayoutEventArgs e)
    {
        // Set the user's culture
        this.SetUserCulture();
    }

    protected void WebGrid1_OnInitializeDataSource(object sender, ISNet.WebUI.WebGrid.DataSourceEventArgs e)
    {

        List&amp;lt;MyClass&amp;gt; data = new List&amp;lt;MyClass&amp;gt;();
        data.Add(new MyClass());
        data.Add(new MyClass());
        data.Add(new MyClass());
        e.DataSource = data;
    }

    private void SetUserCulture()
    {
        // Get/Set culture's format
        CultureInfo culture = new CultureInfo("en-GB");
        this.WebGrid1.LayoutSettings.Culture = culture;
        this.WebGrid1.LayoutSettings.TextSettings.Language = LanguageMode.UseCulture;
        this.WebGrid1.LayoutSettings.TextSettings.UseLanguage = culture.ToString();
    }

    /// &amp;lt;summary&amp;gt;
    /// Perform batch update on the Inurings WebGrid control's source
    /// &amp;lt;/summary&amp;gt;
    /// &amp;lt;param name="source"&amp;gt;Source to update&amp;lt;/param&amp;gt;
    /// &amp;lt;returns&amp;gt;Updated source after batch update&amp;lt;/returns&amp;gt;
    public void PerformInuringsGridBatchUpdate(object sender, EventArgs e)
    {
        // Get changes
        List&amp;lt;WebGridRowChanges&amp;gt; rowChanges = this.WebGrid1.GetChanges();

        // Perform change updates
        foreach (WebGridRowChanges rowChangesItem in rowChanges)
        {
            if (rowChangesItem.KeyValue != null)
            {
                switch (rowChangesItem.RowState)
                {
                    // Add
                    case RowState.Added:

                        break;
                    // Update
                    case RowState.Modified:

                        break;
                    // Delete
                    case RowState.Deleted:
                        break;
                }
            }
        }
    }

    private class MyClass
    {
       #region Variables
        private string _uniqueID = Guid.NewGuid().ToString();      
        private DateTime? _claimDateOfLossFrom = null;
        private DateTime? _claimAdvisedDate = null;
        private DateTime? _dateOfEvent = null;

        #endregion Variables

        #region Properties

        public string UniqueID
        {
            get { return this._uniqueID; }
            set { this._uniqueID = value; }
        }

        /// &amp;lt;summary&amp;gt;
        /// Claims Date Of Loss From
        /// &amp;lt;/summary&amp;gt;
        public DateTime? ClaimDateOfLossFrom
        {
            get { return this._claimDateOfLossFrom; }
            set { this._claimDateOfLossFrom = value; }
        }

        /// &amp;lt;summary&amp;gt;
        /// Claim Advised Date
        /// &amp;lt;/summary&amp;gt;
          public DateTime? ClaimAdvisedDate
        {
            get { return this._claimAdvisedDate; }
            set { this._claimAdvisedDate = value; }
        }

        /// &amp;lt;summary&amp;gt;
        /// Date Of Event
        /// &amp;lt;/summary&amp;gt;
         public DateTime? DateOfEvent
        {
            get { return this._dateOfEvent; }
            set { this._dateOfEvent = value; }
        }

        #endregion Properties

        #region Constructors

        /// &amp;lt;summary&amp;gt;
        /// GeniusClaimAmountMaster constructor
        /// &amp;lt;/summary&amp;gt;
        public MyClass()
        {
            this._claimDateOfLossFrom = DateTime.Now;
            this._claimAdvisedDate = DateTime.Now;
            this._dateOfEvent = DateTime.Now;
        }

        #endregion Constructors
    }    
}&lt;/pre&gt;
&lt;/pre&gt;

&lt;p&gt; &lt;/p&gt;</description></item><item><title>Problem with setting WebGrid's Culture</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Problem-with-setting-WebGrids-Culture/</link><pubDate>Mon, 10 Jan 2011 22:04:18 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello Shawn,&lt;/p&gt;&lt;p&gt;You can set the culture in IntializeLayout or in PageLoad event. Please see the attached sample.&lt;br /&gt;In my test, I am using WebGrid 7 build 416 and WebUIFramework build 767. However, I could not replicate the issue. So, would you mind to send us a simple runable sample that replicates the issue?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Problem with setting WebGrid's Culture</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Problem-with-setting-WebGrids-Culture/</link><pubDate>Mon, 10 Jan 2011 15:07:03 GMT</pubDate><dc:creator>SAgosto</dc:creator><description>&lt;p&gt;Where should the WebGrid's Culture should be set? In the following thread (&lt;a href="http://www.intersoftpt.com/Community/WebGrid/Problem-with-Culture-and-Text-Settings/"&gt;http://www.intersoftpt.com/Community/WebGrid/Problem-with-Culture-and-Text-Settings/&lt;/a&gt;), the logic to set the WebGrid's culture is set within the page's PreRender event.  This doesn't work for me. However, if I set the culture within the WebGrid's OnInitializeLayout event, it seems to work but has some issues.&lt;/p&gt;
&lt;p&gt;For example, the en-GB format works properly only if I use the following format: "DD-MM-YYYY" such as 01-10-11 which is displayed as 01-Oct-2011 where as the following format ("DD/MM/YYYY" such as 01/10/11 displays incorrect as 10-Jan-2011. Why?&lt;/p&gt;&lt;pre&gt;/// &amp;lt;summary&amp;gt;
        /// Handles the Treaty Claim's DataGrid control's OnInitializeLayout event
        /// &amp;lt;/summary&amp;gt;
        /// &amp;lt;param name="sender"&amp;gt;Sender&amp;lt;/param&amp;gt;
        /// &amp;lt;param name="e"&amp;gt;Event arguments&amp;lt;/param&amp;gt;
        protected void grdTreatyClaims_OnInitializeLayout(object sender, ISNet.WebUI.WebGrid.LayoutEventArgs e)
        {
            // Set the user's culture
            this.SetUserCulture();
        }

        /// &amp;lt;summary&amp;gt;
        /// Set the user's culture
        /// &amp;lt;/summary&amp;gt;
        private void SetUserCulture()
        {
            Common.Utility.TraceLogger.Instance.Write("SetUserCulture [START]");

            if (this.Security != null &amp;amp;&amp;amp; this.Security.UserProfile != null)
            {
                // Get/Set culture's format
                //this.Security.UserProfile.Culture
                CultureInfo culture = new CultureInfo(&lt;span style="color: #a31515; font-size: 13px"&gt;&lt;span style="color: #a31515; font-size: 13px"&gt;"en-GB"&lt;/span&gt;&lt;/span&gt;);
                this.grdTreatyClaims.LayoutSettings.Culture = culture;
                this.grdTreatyClaims.LayoutSettings.TextSettings.UseLanguage = culture.ToString();
            }

            Common.Utility.TraceLogger.Instance.Write("SetUserCulture [END]");
        }&lt;/pre&gt;

&lt;p&gt;&lt;span style="color: #008000; font-size: 13px"&gt;&lt;span style="color: #008000; font-size: 13px"&gt; &lt;span style="color: #000000"&gt;Markup&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;CommonCtrl:EnduranceWebGrid runat="server" ID="grdTreatyClaims" DefaultStyleMode="Elegant"
                Height="100%" Width="100%" UseDefaultStyle="True" EnableViewState="false" ViewStateStorage="None"
                OnInitializeDataSource="grdTreatyClaims_OnInitializeDataSource" OnInitializeLayout="grdTreatyClaims_OnInitializeLayout"
                OnInitializePostBack="grdTreatyClaims_OnInitializePostBack" OnPrepareDataBinding="grdTreatyClaims_OnPrepareDataBinding"
                OnExport="grdTreatyClaims_OnExport" OnBatchUpdate="grdTreatyClaims_OnBatchUpdate"
                OnInitializeRow="grdTreatyClaims_OnInitializeRow"&amp;gt;
                &amp;lt;LayoutSettings AllowBatchUpdate="true" BatchUpdateSettings-PromptUnsavedChanges="false" NewRowLostFocusAction="AlwaysUpdate"
                    AllowAddNew="Yes" AllowEdit="Yes" AllowDelete="Yes" EditOnClick="True" AutoHeight="false" RowHeightDefault="22px"
                    AutoWidth="false" AllowColumnFreezing="Yes" AllowExport="No" AllowFilter="No"
                    AllowSelectColumns="Yes" AllowSorting="No" AlwaysShowHelpButton="False" ApplyFiltersKey="Enter"
                    CellPaddingDefault="0" FilterBarVisible="True" HideColumnsWhenGrouped="Default"
                    InProgressUIBehavior="ChangeCursorToHourGlass"
                    PagingExportMode="ExportAllData" PagingMode="VirtualLoad" ResetNewRowValuesOnError="False"
                    ShowFilterStatus="True" VerboseEditingInformation="False" VirtualPageSize="200"&amp;gt;
                    &amp;lt;ClientSideEvents OnInitialize="grdTreatyClaims_OnInitialize" OnRowContextMenu="grdTreatyClaims_OnRowContextMenu"
                        OnCheckBoxClick="grdTreatyClaims_OnCheckBoxClick" 
                        OnExitEditMode="grdTreatyClaims_OnExitEditMode"
                        OnAfterExitEditMode="grdTreatyClaims_OnAfterExitEditMode" 
                        OnRowValidate="grdTreatyClaims_OnRowValidate" /&amp;gt;
                    &amp;lt;FrameStyle&amp;gt;
                        &amp;lt;BorderSettings&amp;gt;
                            &amp;lt;Top Style="none" /&amp;gt;
                            &amp;lt;Bottom Style="none" /&amp;gt;
                            &amp;lt;Left Color="#6593cf" Style="solid" Width="1" /&amp;gt;
                            &amp;lt;Right Color="#6593cf" Style="solid" Width="1" /&amp;gt;
                        &amp;lt;/BorderSettings&amp;gt;
                    &amp;lt;/FrameStyle&amp;gt;
                    &amp;lt;HeaderStyle CssClass="WebGridHeaderStyle" /&amp;gt;
                    &amp;lt;StatusBarStyle CssClass="WebGridStatusBarStyle" /&amp;gt;
                    &amp;lt;StatusBarCommandStyle Active-CssClass="WebGridStatusBarCommandStyleActive" Normal-CssClass="WebGridStatusBarCommandStyleNormal"
                        Over-CssClass="WebGridStatusBarCommandStyleOver"&amp;gt;
                        &amp;lt;Normal CssClass="WebGridStatusBarCommandStyleNormal" /&amp;gt;
                        &amp;lt;Over CssClass="WebGridStatusBarCommandStyleOver" /&amp;gt;
                        &amp;lt;Active CssClass="WebGridStatusBarCommandStyleActive" /&amp;gt;
                    &amp;lt;/StatusBarCommandStyle&amp;gt;
                    &amp;lt;FilterRowStyle CssClass="WebGridFilterRowStyle" /&amp;gt;
                    &amp;lt;PreviewRowStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;RowStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;QuickFilterBarStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;RowHeaderStyle CssClass="WebGridRowHeaderStyle" /&amp;gt;
                    &amp;lt;SelectedRowStyle CssClass="WebGridSelectedRowStyle" /&amp;gt;
                    &amp;lt;EditFocusCellStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;FocusCellStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;LostFocusRowStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;NewRowStyle CssClass="WebGridRowStyle" /&amp;gt;
                    &amp;lt;SortedColumnStyle CssClass="WebGridSortedColumnStyle" /&amp;gt;
                    &amp;lt;AlternatingRowStyle CssClass="WebGridAlternatingRowStyle" /&amp;gt;
                    &amp;lt;EditTextboxStyle CssClass="WebGridEditTextboxStyle" /&amp;gt;
                    &amp;lt;FreezePaneSettings AbsoluteScrolling="True" ActiveFrozenColumns="3" MaxFrozenColumns="3"
                        ShowInContextMenu="False" ShowSplitterLine="False" SplitterLineColor="ActiveBorder"
                        SplitterLineWidth="1" /&amp;gt;
                &amp;lt;/LayoutSettings&amp;gt;
                &amp;lt;RootTable Caption="Claims Transaction" DataKeyField="UniqueID" ColumnFooters="Yes"&amp;gt;                
                    &amp;lt;Columns&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="UniqueID" Name="UniqueID" DataType="System.Integer"
                                                 ColumnType="Text" EditType="NoEdit" NewRowEditType="NoEdit" FilterEditType="NoEdit"
                                                 Width="0px" Visible="false"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="ClaimMasterStatusCode2" Name="ClaimMasterStatusCode2" DataMember="ClaimMasterStatusCode2" 
                                                 DataType="System.String" ColumnType="Text" EditType="NoEdit" NewRowEditType="NoEdit" FilterEditType="NoEdit"
                                                 Width="0px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="InceptionDate" Name="InceptionDate" DataMember="InceptionDate" 
                                                 DataFormatString="dd-MMM-yyyy" DataType="System.String"
                                                 ColumnType="Text" EditType="NoEdit" NewRowEditType="NoEdit" FilterEditType="NoEdit"
                                                 Width="0px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                                                                  
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Claim Number" Name="ClaimMasterReference" DataMember="ClaimMasterReference"
                            DataType="System.String" EditType="NoEdit" FilterEditType="TextBox" Width="100px"
                            FooterText="Total"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                                
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Description" Name="ClaimTitle" DataMember="ClaimTitle"
                            DataType="System.String" EditType="TextBox" FilterEditType="TextBox" Width="150px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                                                               
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Date Qual" Name="DateOfLossQualifier" DataMember="DateOfLossQualifier"
                            DataType="System.Integer" ColumnType="Custom" EditType="DropdownList" NewRowEditType="DropdownList"
                            FilterEditType="DropdownList" Width="75px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt; 
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Date of Loss" Name="ClaimDateOfLossFrom" DataMember="ClaimDateOfLossFrom"
                            DataFormatString="dd-MMM-yyyy" DataType="System.String" ColumnType="Text" EditType="CalendarCombo"
                            NewRowEditType="CalendarCombo" FilterEditType="CalendarCombo" Width="75px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                                                                                                                
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Reported Date" Name="ClaimAdvisedDate" DataMember="ClaimAdvisedDate"
                            DataFormatString="dd-MMM-yyyy" DataType="System.String" ColumnType="Text" EditType="CalendarCombo"
                            NewRowEditType="CalendarCombo" FilterEditType="CalendarCombo" Width="90px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;   
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Event Date" Name="DateOfEvent" DataMember="DateOfEvent"
                            DataFormatString="dd-MMM-yyyy" DataType="System.String" ColumnType="Text" EditType="CalendarCombo"
                            NewRowEditType="CalendarCombo" FilterEditType="CalendarCombo" Width="90px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Level 1 Cat" Name="ClaimLevel1CATCode" DataMember="ClaimLevel1CATCode"
                            DataType="System.String" ColumnType="Custom" EditType="DropdownList" NewRowEditType="DropdownList"
                            FilterEditType="DropdownList" Width="100px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Level 3 Cat" Name="ClaimLevel3CATCode" DataMember="ClaimLevel3CATCode"
                            DataType="System.String" ColumnType="Custom" EditType="DropdownList" NewRowEditType="DropdownList"
                            FilterEditType="DropdownList" Width="100px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                            
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Cause of Loss" Name="LossAnalysis1Code" DataMember="LossAnalysis1Code"
                            DataType="System.String" ColumnType="Custom" EditType="DropdownList" NewRowEditType="DropdownList"
                            FilterEditType="DropdownList" Width="120px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        
                        
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Paid" Name="Paid" DataMember="Paid" DataFormatString="#,##0.00"
                            DataType="System.Decimal" DefaultValue="0" EditType="TextBox" FilterEditType="TextBox" Width="80px"
                            AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Expenses" Name="Expenses" DataMember="Expenses" DataFormatString="#,##0.00" 
                            DataType="System.Decimal" DefaultValue="0" EditType="TextBox" FilterEditType="TextBox"
                            Width="80px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Salvage" Name="Salvage" DataMember="Salvage" DataFormatString="#,##0.00"
                            DataType="System.Decimal" DefaultValue="0" EditType="TextBox" FilterEditType="TextBox" Width="80px"
                            AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Cash Loss" Name="CashLoss" DataMember="CashLoss" DataFormatString="#,##0.00"
                            DataType="System.Decimal" DefaultValue="0" EditType="TextBox" FilterEditType="TextBox"
                            Width="80px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Refund" Name="Refund" DataMember="Refund" DataFormatString="#,##0.00"
                            DataType="System.Decimal" DefaultValue="0" EditType="TextBox" FilterEditType="TextBox" Width="80px"
                            AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Port In" Name="ClaimPortfolioIn" DataMember="ClaimPortfolioIn"
                            DataFormatString="#,##0.00" DefaultValue="0" DataType="System.Decimal" EditType="TextBox" FilterEditType="TextBox"
                            Width="80px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Port Out" Name="ClaimPortfolioOut" DataMember="ClaimPortfolioOut"
                            DataFormatString="#,##0.00" DefaultValue="0" DataType="System.Decimal" EditType="TextBox" FilterEditType="TextBox"
                            Width="80px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        
                        
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Current Ind O/S" Name="CurrentINDOutstanding" DataMember="CurrentINDOutstanding"
                            DataFormatString="#,##0.00" DataType="System.Decimal" DefaultValue="0" EditType="NoEdit" FilterEditType="TextBox"
                            Width="90px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption=" " Name="IncludeINDOutstanding" DataMember="IncludeINDOutstanding"
                            ColumnType="CheckBox" EditType="Checkbox" FilterEditType="NoEdit" Width="25px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                          
                        &amp;lt;ISWebGrid:WebGridColumn Caption="New Ind O/S" Name="INDOutstanding" DataMember="INDOutstanding"
                            DataFormatString="#,##0.00" DataType="System.Decimal" DefaultValue="0" EditType="TextBox" FilterEditType="TextBox"
                            Width="90px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Current Fee O/S" Name="CurrentFEEOutstanding" DataMember="CurrentFEEOutstanding"
                            DataFormatString="#,##0.00" DataType="System.Decimal" DefaultValue="0" EditType="NoEdit" FilterEditType="TextBox"
                            Width="90px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption=" " Name="IncludeFEEOutstanding" DataMember="IncludeFEEOutstanding"
                            ColumnType="CheckBox" EditType="Checkbox" FilterEditType="NoEdit" Width="25px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                          
                        &amp;lt;ISWebGrid:WebGridColumn Caption="New Fee O/S" Name="FEEOutstanding" DataMember="FEEOutstanding"
                            DataFormatString="#,##0.00" DataType="System.Decimal" DefaultValue="0" EditType="TextBox" FilterEditType="TextBox"
                            Width="90px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                                                                                
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Current ACR O/S" Name="CurrentACROutstanding" DataMember="CurrentACROutstanding"
                            DataFormatString="#,##0.00" DataType="System.Decimal" DefaultValue="0" EditType="NoEdit" FilterEditType="TextBox"
                            Width="90px" AggregateFunction="Sum"&amp;gt;                              
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption=" " Name="IncludeACROutstanding" DataMember="IncludeACROutstanding"
                            ColumnType="CheckBox" EditType="Checkbox" FilterEditType="NoEdit" Width="25px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                          
                        &amp;lt;ISWebGrid:WebGridColumn Caption="New ACR O/S" Name="ACROutstanding" DataMember="ACROutstanding"
                            DataFormatString="#,##0.00" DataType="System.Decimal" DefaultValue="0" EditType="TextBox" FilterEditType="TextBox"
                            Width="90px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Current ACE O/S" Name="CurrentACEOutstanding" DataMember="CurrentACEOutstanding"
                            DataFormatString="#,##0.00" DataType="System.Decimal" DefaultValue="0" EditType="NoEdit" FilterEditType="TextBox"
                            Width="90px" AggregateFunction="Sum"&amp;gt;                              
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption=" " Name="IncludeACEOutstanding" DataMember="IncludeACEOutstanding"
                            ColumnType="CheckBox" EditType="Checkbox" FilterEditType="NoEdit" Width="25px"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                          
                        &amp;lt;ISWebGrid:WebGridColumn Caption="New ACE O/S" Name="ACEOutstanding" DataMember="ACEOutstanding"
                            DataFormatString="#,##0.00" DataType="System.Decimal" DefaultValue="0" EditType="TextBox" FilterEditType="TextBox"
                            Width="90px" AggregateFunction="Sum"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;                       
  
  
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Current IND" Name="CurrentIND" DataMember="CurrentIND" DefaultValue="0"
                            DataFormatString="#,##0.00" DataType="System.Decimal" EditType="NoEdit" FilterEditType="NoEdit"
                            AggregateFunction="Sum" Visible="false"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Current FEE" Name="CurrentFEE" DataMember="CurrentFEE" DefaultValue="0"
                            DataFormatString="#,##0.00" DataType="System.Decimal" EditType="NoEdit" FilterEditType="NoEdit"
                            AggregateFunction="Sum" Visible="false"&amp;gt;                            
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Current REC" Name="CurrentREC" DataMember="CurrentREC" DefaultValue="0"
                            DataFormatString="#,##0.00" DataType="System.Decimal" EditType="NoEdit" FilterEditType="NoEdit"
                            AggregateFunction="Sum" Visible="false"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Current Incurred" Name="CurrentIncurred" DataMember="CurrentIncurred" DefaultValue="0"
                            DataFormatString="#,##0.00" DataType="System.Decimal" EditType="NoEdit" FilterEditType="NoEdit"
                            AggregateFunction="Sum" Visible="false"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Incurred" Name="Incurred" DataMember="" DefaultValue="0"
                            DataFormatString="#,##0.00" DataType="System.Decimal" EditType="TextBox" FilterEditType="NoEdit" 
                            AggregateFunction="Sum" Visible="false"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                        &amp;lt;ISWebGrid:WebGridColumn Caption="Movement" Name="IncurredMovement" DataMember="" DefaultValue="0"
                            DataFormatString="#,##0.00" DataType="System.Decimal" EditType="TextBox" FilterEditType="NoEdit"
                            AggregateFunction="Sum" Visible="false"&amp;gt;
                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;
                    &amp;lt;/Columns&amp;gt;
                &amp;lt;/RootTable&amp;gt;
            &amp;lt;/CommonCtrl:EnduranceWebGrid&amp;gt;&lt;/pre&gt;

&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item></channel></rss>