[CLOSED] ext:Notification - error when mouse over

  1. #1

    [CLOSED] ext:Notification - error when mouse over

    Hi!

    In page_load event of my aspx page, I create a ext.net.notification message, with PinEvent = "mouseover".
    When the mouse over the notification, this error is raised:
    In the messagebox is written: Run time error: The object don´t support the property or method 'removeClass'.

    Attachment 3844

    Am I doing something wrong or forgetting to set some property?
    Thanks for any help!

    To reproduced this problem, please, follow the example:
    <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Teste10.aspx.vb" Inherits="WebApplication3.Teste10" %>
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" 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 Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Dim ntf As Ext.Net.Notification
            Dim ntfConf As Ext.Net.NotificationConfig = New Ext.Net.NotificationConfig
            
            ntfConf.HideDelay = 8000 'close after 2 seconds
            ntfConf.ShowPin = True
            ntfConf.ShowMode = Ext.Net.ShowMode.Stack
            ntfConf.PinEvent = "mouseover"
            ntfConf.Title = "BirthDay"
            ntfConf.Icon = Ext.Net.Icon.Information
            ntfConf.Html = "<b>Supera</b></br>Birth date: fev/25/1978</br><b><font color:blue>5 days</font>"
            ntf = New Ext.Net.Notification()
            ntf.Show(ntfConf)
            
        End Sub
    
    </script>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <ext:ResourceManager ID="ResourceManager1" runat="server" /> 
        <div>
            
        </div>
        </form>
    </body>
    </html>
    Last edited by Daniil; Feb 20, 2012 at 1:49 PM. Reason: [CLOSED]
  2. #2
    Hi,

    The error doesn't occur with the latest sources. Please wait the next release.
  3. #3
    Ok!
    Thanks.

Similar Threads

  1. Replies: 1
    Last Post: May 21, 2012, 8:36 AM
  2. [CLOSED] Error when i click in Pin button of ext.net.Notification
    By supera in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 20, 2012, 1:46 PM
  3. Replies: 3
    Last Post: Feb 10, 2012, 12:50 PM
  4. [CLOSED] Notification Js Error
    By majestic in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Dec 23, 2010, 7:59 AM
  5. Replies: 2
    Last Post: Feb 12, 2010, 5:03 AM

Posting Permissions