[CLOSED] TreeGrid: clearContent() method implementation issue

  1. #1

    [CLOSED] TreeGrid: clearContent() method implementation issue

    TreeGrid: clearContent() method implementation issue

    Hello,

    I call the clearContent() method on a treeGrid which raises an error within the implementation of the this method. I notice that the TreeGrid object doesn't have any body property as the code expected. Is this a bug in coolite?

    You can try with the following code, Excuse me for the lot of comments inside.

     
    <%@ Page Language="C#" %>
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <%--<script runat="server">
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!X.IsAjaxRequest)
            {
                this.Store1.DataSource = this.Data;
                this.Store1.DataBind();
            }
        }
        private object[] Data
        {
            get
            {
                return new object[]
                {
                    new object[] { "3m Co", 71.72, 0.02, 0.03, "9/1 12:00am" },
                    new object[] { "Alcoa Inc", 29.01, 0.42, 1.47, "9/1 12:00am" },
                    new object[] { "Altria Group Inc", 83.81, 0.28, 0.34, "9/1 12:00am" },
                    new object[] { "American Express Company", 52.55, 0.01, 0.02, "9/1 12:00am" },
                    new object[] { "American International Group, Inc.", 64.13, 0.31, 0.49, "9/1 12:00am" },
                    new object[] { "AT&T Inc.", 31.61, -0.48, -1.54, "9/1 12:00am" },
                    new object[] { "Boeing Co.", 75.43, 0.53, 0.71, "9/1 12:00am" },
                    new object[] { "Caterpillar Inc.", 67.27, 0.92, 1.39, "9/1 12:00am" },
                    new object[] { "Citigroup, Inc.", 49.37, 0.02, 0.04, "9/1 12:00am" },
                    new object[] { "E.I. du Pont de Nemours and Company", 40.48, 0.51, 1.28, "9/1 12:00am" },
                    new object[] { "Exxon Mobil Corp", 68.1, -0.43, -0.64, "9/1 12:00am" },
                    new object[] { "General Electric Company", 34.14, -0.08, -0.23, "9/1 12:00am" },
                    new object[] { "General Motors Corporation", 30.27, 1.09, 3.74, "9/1 12:00am" },
                    new object[] { "Hewlett-Packard Co.", 36.53, -0.03, -0.08, "9/1 12:00am" },
                    new object[] { "Honeywell Intl Inc", 38.77, 0.05, 0.13, "9/1 12:00am" },
                    new object[] { "Intel Corporation", 19.88, 0.31, 1.58, "9/1 12:00am" },
                    new object[] { "International Business Machines", 81.41, 0.44, 0.54, "9/1 12:00am" },
                    new object[] { "Johnson & Johnson", 64.72, 0.06, 0.09, "9/1 12:00am" },
                    new object[] { "JP Morgan & Chase & Co", 45.73, 0.07, 0.15, "9/1 12:00am" },
                    new object[] { "McDonald\"s Corporation", 36.76, 0.86, 2.40, "9/1 12:00am" },
                    new object[] { "Merck & Co., Inc.", 40.96, 0.41, 1.01, "9/1 12:00am" },
                    new object[] { "Microsoft Corporation", 25.84, 0.14, 0.54, "9/1 12:00am" },
                    new object[] { "Pfizer Inc", 27.96, 0.4, 1.45, "9/1 12:00am" },
                    new object[] { "The Coca-Cola Company", 45.07, 0.26, 0.58, "9/1 12:00am" },
                    new object[] { "The Home Depot, Inc.", 34.64, 0.35, 1.02, "9/1 12:00am" },
                    new object[] { "The Procter & Gamble Company", 61.91, 0.01, 0.02, "9/1 12:00am" },
                    new object[] { "United Technologies Corporation", 63.26, 0.55, 0.88, "9/1 12:00am" },
                    new object[] { "Verizon Communications", 35.57, 0.39, 1.11, "9/1 12:00am" },
                    new object[] { "Wal-Mart Stores, Inc.", 45.45, 0.73, 1.63, "9/1 12:00am" }
                };
            }
        }
    </script>--%>
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head2" runat="server">
        <title>TreeGrid - Ext.NET Examples</title>
        <link href="../../../../resources/css/examples.css" rel="stylesheet" type="text/css" />
        <style type="text/css">
            .ext-ie7 .x-fieldset legend
            {
                padding-left: 0px !important;
                margin-left: -7px !important;
            }
        </style>
        <script type="text/javascript">
            var formatHours = function(v) {
                if (v < 1) {
                    return Math.round(v * 60) + " mins";
                } else if (Math.floor(v) !== v) {
                    var min = v - Math.floor(v);
                    return Math.floor(v) + "h " + Math.round(min * 60) + "m";
                } else {
                    return v + " hour" + (v === 1 ? "" : "s");
                }
            };
            var onReady = function() {
                //debugger;
                TreeGrid1.clearContent();
                //ShowProfileSettingsWindows();
            }
    
            var profileForm;
            var winProfile;
            function initProfileForm() {
                profileForm = new Ext.FormPanel({
                    id: 'profileForm',
                    labelAlign: 'left',
                    frame: true,
                    header: false,
                    bodyStyle: 'padding:5px 5px 5px 5px',
                    buttonAlign: 'center',
                    width: 510,
                    labelWidth: 140,
                    layout: 'form',
                    items: [{
                        xtype: 'fieldset',
                        title: 'Profile Password ',
                        width: 470,
                        id: 'motPasseFieldset',
                        items: [{ xtype: "compositefield",
                            items: [{
                                xtype: 'textfield',
                                autoFocus: true,
                                autoFocusDelay: 100,
                                fieldLabel: 'actuel',
                                name: 'actuel',
                                id: 'actuel',
                                width: 150,
                                maxLength: '15',
                                inputType: 'Password',
                                selectOnFocus: true
                            }, {
                                xtype: 'button',
                                text: 'button',
                                x: 130,
                                y: 60
    }]
                            }, {
                                xtype: 'textfield',
                                fieldLabel: 'New',
                                name: 'nouveau',
                                id: 'nouveau',
                                width: 150,
                                maxLength: '15',
                                inputType: 'Password',
                                selectOnFocus: true
                            }, {
                                xtype: 'textfield',
                                fieldLabel: 'Reapeat',
                                name: 'repeter',
                                id: 'repeter',
                                width: 150,
                                maxLength: '15',
                                inputType: 'Password',
                                selectOnFocus: true
    }]
    }]
                            });
                        }
    
                        function ShowProfileSettingsWindows() {
                            initProfileForm();
                            winProfile = new Ext.Window({
                                layout: 'fit',
                                title: 'Profile MyProfile',
                                width: 510,
                                height: 520,
                                closeAction: 'destroy',
                                plain: true,
                                items: profileForm,
                                resizable: false,
                                modal: true,
                                buttons: [{
                                    text: 'OK',
                                    handler: function() { }
                                }, {
                                    text: 'Cancel',
                                    handler: function() { winProfile.destroy(); }
    }]
                                });
                                winProfile.show();
                                //Pour mettre le focus sur le premier champ a l'ouverture de la fenĂȘtre Profil
                                actuel.focus();
                                //courriel.focus();
                                //telResidence.focus();
                                //telecopieur.focus();
                                //winProfile.doLayout();
                            }        
            
            
        </script>
        
        <script type="text/javascript">
            var template = '<span style="color:{0};">{1}</span>';
            var change = function(value) {
                return String.format(template, (value > 0) ? "green" : "red", value);
            };
            var pctChange = function(value) {
                return String.format(template, (value > 0) ? "green" : "red", value + "%");
            };
        </script>
    
    </head>
    <body>
        <form id="Form1" runat="server">
        <%--<ext:ResourceManager ID="ResourceManager1" runat="server" />--%>
        <ext:ResourceManager ID="resourceManager" runat="server" StateProvider="Cookie">
            <Listeners>
                <DocumentReady Handler="onReady(); " />
            </Listeners>
        </ext:ResourceManager>
        
        <h1>
            TreeGrid</h1>
        <%--<ext:TabPanel runat="server" Height="500" Title="tab panel" Width="800">
            <Items>
                <ext:TextArea ID="teArea" runat="server" Text="text arrea text <br/> pascal" />
                <ext:HtmlEditor ID="TextArea1" runat="server" Text="text arrea text <br/> pascal" />
                <ext:GridPanel ID="GridPanel1" runat="server" StripeRows="true" Title="Array Grid"
                    TrackMouseOver="true" Width="600" Height="350" AutoExpandColumn="company">
                    <Store>
                        <ext:Store ID="Store1" runat="server">
                            <Reader>
                                <ext:ArrayReader>
                                    <Fields>
                                        <ext:RecordField Name="company" />
                                        <ext:RecordField Name="price" Type="Float" />
                                        <ext:RecordField Name="change" Type="Float" />
                                        <ext:RecordField Name="pctChange" Type="Float" />
                                        <ext:RecordField Name="lastChange" Type="Date" DateFormat="M/d hh:mmtt" />
                                    </Fields>
                                </ext:ArrayReader>
                            </Reader>
                        </ext:Store>
                    </Store>
                    <ColumnModel ID="ColumnModel1" runat="server">
                        <Columns>
                            <ext:Column ColumnID="Company" Header="Company" DataIndex="company" />
                            <ext:Column Header="Price" DataIndex="price">
                                <Renderer Format="UsMoney" />
                            </ext:Column>
                            <ext:Column ColumnID="Change" Header="Change" DataIndex="change">
                                <Renderer Fn="change" />
                            </ext:Column>
                            <ext:Column Header="Change" DataIndex="pctChange">
                                <Renderer Fn="pctChange" />
                            </ext:Column>
                            <ext:DateColumn Header="Last Updated" DataIndex="lastChange" />
                        </Columns>
                    </ColumnModel>
                    <SelectionModel>
                        <ext:RowSelectionModel ID="RowSelectionModel1" runat="server" SingleSelect="true" />
                    </SelectionModel>
                </ext:GridPanel>
            </Items>
        </ext:TabPanel>--%>
        <ext:TabPanel runat="server" Height="300" Title="tab panel">
            <Items>
                <ext:TextArea ID="teArea" runat="server" Text="text arrea text <br/> pascal" />
                <ext:HtmlEditor ID="TextArea1" runat="server" Text="text arrea text <br/> pascal" />
                <ext:TreeGrid ID="TreeGrid1" runat="server" Title="Core Team Projects" Width="500"
                    Height="260" NoLeafIcon="true" EnableDD="true" AutoScroll="false">
                    <Columns>
                        <ext:TreeGridColumn Header="task" Width="230" DataIndex="task" />
                        <ext:TreeGridColumn Header="duration" Width="100" DataIndex="duration" Align="Center"
                            SortType="AsFloat">
                            <XTemplate ID="XTemplate1" runat="server">
                                <Html>
                                {duration:this.formatHours}
                            </Html>
                                <Functions>
                                    <ext:JFunction Name="formatHours" Fn="formatHours" />
                                </Functions>
                            </XTemplate>
                        </ext:TreeGridColumn>
                        <ext:TreeGridColumn Header="Assigned To" Width="150" DataIndex="user" />
                    </Columns>
                    <Root>
                        <ext:TreeNode Text="Tasks">
                            <Nodes>
                                <ext:TreeNode Icon="Folder" Expanded="true">
                                    <CustomAttributes>
                                        <ext:ConfigItem Name="task" Value="Project: Shopping" Mode="Value" />
                                        <ext:ConfigItem Name="duration" Value="13.25" />
                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                    </CustomAttributes>
                                    <Nodes>
                                        <ext:TreeNode Icon="Folder">
                                            <CustomAttributes>
                                                <ext:ConfigItem Name="task" Value="Housewares" Mode="Value" />
                                                <ext:ConfigItem Name="duration" Value="1.25" />
                                                <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                            </CustomAttributes>
                                            <Nodes>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Kitchen supplies" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.25" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Groceries" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.4" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Cleaning supplies" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.4" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Office supplies" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.2" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                            </Nodes>
                                        </ext:TreeNode>
                                        <ext:TreeNode Icon="Folder" Expanded="true">
                                            <CustomAttributes>
                                                <ext:ConfigItem Name="task" Value="Remodeling" Mode="Value" />
                                                <ext:ConfigItem Name="duration" Value="12" />
                                                <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                            </CustomAttributes>
                                            <Nodes>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Retile kitchen" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="6.5" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Icon="Folder">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Paint bedroom" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="2.75" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                    <Nodes>
                                                        <ext:TreeNode Leaf="true">
                                                            <CustomAttributes>
                                                                <ext:ConfigItem Name="task" Value="Ceiling" Mode="Value" />
                                                                <ext:ConfigItem Name="duration" Value="1.25" />
                                                                <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                            </CustomAttributes>
                                                        </ext:TreeNode>
                                                        <ext:TreeNode Leaf="true">
                                                            <CustomAttributes>
                                                                <ext:ConfigItem Name="task" Value="Walls" Mode="Value" />
                                                                <ext:ConfigItem Name="duration" Value="1.5" />
                                                                <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                            </CustomAttributes>
                                                        </ext:TreeNode>
                                                    </Nodes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Decorate living room" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="2.75" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Fix lights" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.75" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Reattach screen door" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="2" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                            </Nodes>
                                        </ext:TreeNode>
                                    </Nodes>
                                </ext:TreeNode>
                                <ext:TreeNode Icon="Folder">
                                    <CustomAttributes>
                                        <ext:ConfigItem Name="task" Value="Project: Testing" Mode="Value" />
                                        <ext:ConfigItem Name="duration" Value="2" />
                                        <ext:ConfigItem Name="user" Value="Core Team" Mode="Value" />
                                    </CustomAttributes>
                                    <Nodes>
                                        <ext:TreeNode Icon="Folder">
                                            <CustomAttributes>
                                                <ext:ConfigItem Name="task" Value="Mac OSX" Mode="Value" />
                                                <ext:ConfigItem Name="duration" Value="0.75" />
                                                <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                            </CustomAttributes>
                                            <Nodes>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="FireFox" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.25" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Safari" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.25" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Chrome" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.25" />
                                                        <ext:ConfigItem Name="user" Value="Tommy Maintz" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                            </Nodes>
                                        </ext:TreeNode>
                                        <ext:TreeNode Icon="Folder">
                                            <CustomAttributes>
                                                <ext:ConfigItem Name="task" Value="Windows" Mode="Value" />
                                                <ext:ConfigItem Name="duration" Value="3.75" />
                                                <ext:ConfigItem Name="user" Value="Darrell Meyer" Mode="Value" />
                                            </CustomAttributes>
                                            <Nodes>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="FireFox" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.25" />
                                                        <ext:ConfigItem Name="user" Value="Darrell Meyer" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Safari" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.25" />
                                                        <ext:ConfigItem Name="user" Value="Darrell Meyer" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Chrome" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.25" />
                                                        <ext:ConfigItem Name="user" Value="Darrell Meyer" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Internet Explorer" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="3" />
                                                        <ext:ConfigItem Name="user" Value="Darrell Meyer" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                            </Nodes>
                                        </ext:TreeNode>
                                        <ext:TreeNode Icon="Folder">
                                            <CustomAttributes>
                                                <ext:ConfigItem Name="task" Value="Linux" Mode="Value" />
                                                <ext:ConfigItem Name="duration" Value="0.5" />
                                                <ext:ConfigItem Name="user" Value="Aaron Conran" Mode="Value" />
                                            </CustomAttributes>
                                            <Nodes>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="FireFox" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.25" />
                                                        <ext:ConfigItem Name="user" Value="Aaron Conran" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                                <ext:TreeNode Leaf="true">
                                                    <CustomAttributes>
                                                        <ext:ConfigItem Name="task" Value="Chrome" Mode="Value" />
                                                        <ext:ConfigItem Name="duration" Value="0.25" />
                                                        <ext:ConfigItem Name="user" Value="Aaron Conran" Mode="Value" />
                                                    </CustomAttributes>
                                                </ext:TreeNode>
                                            </Nodes>
                                        </ext:TreeNode>
                                    </Nodes>
                                </ext:TreeNode>
                            </Nodes>
                        </ext:TreeNode>
                    </Root>
                </ext:TreeGrid>
            </Items>
        </ext:TabPanel>
        <%--    <ext:Button runat="server" ID="ba" Text="Click to show a new window">
            <Listeners>
                <Click Fn="ShowProfileSettingsWindows" />
            </Listeners>
        </ext:Button>--%>
        </form>
    </body>
    </html>

    Romuald.
    Last edited by Daniil; Nov 15, 2011 at 5:42 AM. Reason: [CLOSED]
  2. #2
    Hi,

    'clearContent' methoids clear loaded content via AutoLoad. TreePanel doesn't load content. What you try to accomplish? If you want to remove all nodes then use
    tree.getRootNode().removeChildren();
  3. #3
    Thank for your reply.

    It's what I expected and works fine.

    But I understand your explanation I think this method shouldn't then be available with treePanel, should it?

    Romuald.
  4. #4
    Hi,

    But I understand your explanation I think this method shouldn't then be available with treePanel, should it?
    Yes, you are right. Just TreePanel is inheritor of Panel. We will override it by empty js function
  5. #5
    Ok,

    best regards.

    Romuald.
  6. #6
  7. #7
    The fix has been added to SVN, revision #3770.

Similar Threads

  1. [CLOSED] Vertical scroll bar issue for treegrid
    By AnulekhaK in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Feb 02, 2012, 8:30 AM
  2. [CLOSED] Progressbar implementation issue
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Apr 27, 2011, 5:21 PM
  3. Replies: 5
    Last Post: Oct 26, 2010, 2:20 PM
  4. [CLOSED] window.clearContent locks up textfields
    By jchau in forum 1.x Legacy Premium Help
    Replies: 12
    Last Post: Oct 30, 2009, 10:50 AM
  5. [CLOSED] Panel.clearContent does not detach events
    By jchau in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Sep 29, 2009, 7:22 AM

Posting Permissions