[FIXED] [V0.8] TrackMouseOver

  1. #1

    [FIXED] [V0.8] TrackMouseOver

    Hello,

    The following simplified example demonstrates a minor problem with the GridPanel and TrackMouseOver.

    Example.aspx:
    <%@ Page Language="C#" %>
    <%@ Register Assembly="Coolite.Ext.Web" Namespace="Coolite.Ext.Web" TagPrefix="ext" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        
    <script runat="server">
    
    protected void Page_Load(object sender, EventArgs e)
    {
        Store1.DataSource = new object[] {
            new object[] { "Geoffrey" },
            new object[] { "Timothy" }
        };
        Store1.DataBind();
    }
    
    </script>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Example</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <ext:ScriptManager runat="server" />
            <ext:Store ID="Store1"
                runat="server"
                AutoLoad="true">
                <Reader>
                    <ext:ArrayReader>
                        <Fields>
                            <ext:RecordField Name="Name" />
                        </Fields>
                    </ext:ArrayReader>
                </Reader>
            </ext:Store>
            <ext:GridPanel ID="GridPanel1"
                runat="server"
                AutoHeight="true"
                AutoWidth="true"
                StoreID="Store1"
                TrackMouseOver="true">
                <ColumnModel>
                    <Columns>
                        <ext:Column ColumnID="Name" DataIndex="Name" />
                        <ext:CommandColumn>
                            <Commands>
                                <ext:GridCommand CommandName="View" Text="View" />
                            </Commands>
                        </ext:CommandColumn>
                    </Columns>
                </ColumnModel>
            </ext:GridPanel>
        </form>
    </body>
    </html>
    Replication steps:

    1. Run your mouse over the names Geoffrey and Timothy; works
    2. Run your mouse over the View buttons; you might need to do this rapidly
    3. Notice how it doesn't release the row? It's still highlighted like the mouse is hovering

    Was tested in FF3.0 and IE6.0

    Cheers,
    Timothy
  2. #2

    RE: [FIXED] [V0.8] TrackMouseOver

    Hi Timothy,

    Thanks for the sample. I was able to reproduce the issue. hmm....


    Geoffrey McGill
    Founder
  3. #3

    RE: [FIXED] [V0.8] TrackMouseOver

    Hello Geoffrey,

    Let me know you have an idea, not a big deal anyways, just a little one.

    Cheers
  4. #4

    RE: [FIXED] [V0.8] TrackMouseOver

    Geoffrey, any thoughts?

    It was mentioned by a client, wouldn't mind clearing it up ;)

    Cheers,
    Timothy
  5. #5

    RE: [FIXED] [V0.8] TrackMouseOver

    Hi Timothy,

    We're trying to figure out a fix for this issue. It's a bit complicated but we have a few ideas we're working on.*


    I apologize for the delay in getting you a fix.


    Geoffrey McGill
    Founder
  6. #6

    RE: [FIXED] [V0.8] TrackMouseOver

    Hi Timothy,

    We're still working on this problem.*


    Geoffrey McGill
    Founder
  7. #7

    RE: [FIXED] [V0.8] TrackMouseOver

    Hi Timothy,

    Fixed. Please update from SVN*
  8. #8

    RE: [FIXED] [V0.8] TrackMouseOver

    Awesome thanks vlad! ;)

    Cheers,
    Timothy

Similar Threads

  1. TrackMouseOver Detection
    By cwolcott in forum 1.x Help
    Replies: 4
    Last Post: Jan 02, 2012, 6:59 PM
  2. [FIXED] Bug in UpdateRecordId
    By PetrSnobelt in forum Bugs
    Replies: 9
    Last Post: May 23, 2011, 1:50 PM
  3. [FIXED] [0.8.2 / 1.0] MultiSelect Bug
    By Timothy in forum Bugs
    Replies: 1
    Last Post: Dec 20, 2009, 11:57 AM
  4. [FIXED] [V0.6] TextArea
    By Timothy in forum Bugs
    Replies: 3
    Last Post: Sep 21, 2008, 6:12 PM
  5. [FIXED] [V0.6] SetValue
    By Timothy in forum Bugs
    Replies: 6
    Last Post: Sep 14, 2008, 4:44 PM

Posting Permissions