jgrowl

How can I stick a message in only once in jgrowl?

Is there a way to stick(y) a message in the collection only one time? ...

jgrowl on iis5

for some reason jGrowl does not want to work on my IIS 5 (live) server, but works perfectly on my IIS 6 (staging) server. has anyone else experienced this problem or is it just my setup? on iis5 i'm getting an "Object doesn't support this property or method" error ...

jGrowl: How can I limit my interface to one message at a time?

Given: I load a queue of messages at page load. With jGrowl, how can I display each message, one message at a time, in a drip-like fashion? ...

Error Message/Notification Component for .NET C# web app using jQuery (jGrowl)

I’m trying to create an error message / notification component for our .net C# web application. The requirements are that multiple messages can be posted, that they persist through partial post backs, and have different types (sticky, error, notification). I have a server-side method that captures these messages, and I am using the pop...

close previous jGrowl notifications before showing a new one.

I have a simple app that executes $.jGrowl("loading");. Then the data is displayed $.jGrowl("blah blah blah data goes here"); after crunching data which can take 1 -5 seconds. I've seen a post that mentions using the default.pool to only display one message at a time. The format I want is: Show box 1 crunch data close box 1 show b...

How do I themeroll jGrowl

Hello, I am working on building a site and i'm trying to use jquery ui themes for as much of the styling as possible. and the jGrowl site says it can be theme rolled. from the site: Changes in 1.2.2 Notification can now be theme rolled for jQuery UI, special thanks to Jeff Chan! there isn't really any explanation as to ho...

jquery jgrowl position

If in jgrowl.css the position is changed to 'center', how do I override this to default i.e, 'top-right' $.jGrowl(data, { header: 'data' ,animateOpen: { height: 'show'}, life: 10000,position:'top-right' }); Currently, Position doesn't work right now in the above Thanks.. ...

jquery jrowl size

Hi, How to set the jgrowl size to be as auto.Because if the the contents are more i thinks it wraps up the content. can we set this something like <script> $.jGrowl.defaults.size = 'auto'; </script> Thanks. ...

How to close a jgrowl manually

All, How to close and open a jgrowl manually jQuery("div.jGrowl").trigger("jGrowl.close"); The above code doesnt seem to work. Thanks. ...

Dynamic notifications using jQuery

I'm currently building a homepage for our staff which is to be set as the homepage in their browser. I'm currently building the facility whereby nominated members of staff can send notifications to all staff. These will popup on their home page without the need for them to refresh the page. I've currently got the code below which worked...

jGrowl in asp.net

Hello there I have to search a particular member and so as i write the member id in the textbox and click the search button, I want the message to be displayed "member not found"(if not found) in jgrowl otherwise it will be redirected to the memberId page. Now the problem is when the button is clicked i write the details in button_clic...

jgrowl message is displayed unwantedly

[code] try{ myConnection.Open(); SqlCommand myCommd = new SqlCommand(StrMemberId, myConnection); myCommd.Parameters.AddWithValue("@MemberId", TxtEnterMemberId.Text); int value=(int)myCommd.ExecuteScalar(); if (value!= 0 ) { Response.Redirect("GeneralExamination.aspx? MemberId=" + t...

jquery lib conflicts

Hello friends, I am tryin to use jgrowl and jquery validation in the same page and each time either of them works. I ve gone through the jQuery.nonConflict but coulnt solve the problem my .cs code for jgrowl is string js = "$.jGrowl(' INVALID MEMBER ID, KINDLY TRY AGAIN ');"; Page.ClientScript.RegisterStartupScript(typeof(string), "j...

jGrowl removes my links.

If I put any links in my messages, jGrowl removes them. Can I have links in jGrowl? ...

How to show number of jgrowl notfications?

Hi I am using a pool of 5 with jquery. So only 5 notifications should be shown. I think it would be nice to have maybe under the "close all" button to have a count like shown 5 of 20 notifications. To me it could get confusing if I keep closing notifications and new ones keep poping up. I might think there is some sort of problem with ...

why jGrowl popup doesnt look as expected?

hi, i got this jGrowl notification on my site, when the notifications box its poped jGrowl popup doesnt looks well styled. this is how i call jgrowl files <link rel="stylesheet" type="text/css" href="./include/jgrowl/jquery.jgrowl.css" /> this is the notification box ...

Calling a function after a Response.Redirect

I have an ASP.NET site and I'm using jGrowl to display notifications to the user. This works great when the user stays on the same page, but what if I'm redirecting the user. Example, AddPerson.aspx is a page for adding a new person. After a person is added the user is redirect to People.aspx. I'd like to then display the notificat...

jGrowl how to close notifcation ?

Hello. In my jgrowl message, your asked to answer either Yes or No, both runs a ajax call, and on success i wish to close the notification, how can i do that, is there a line to close, because right now they all are on timers(life), so they close themselves if i dont make them "sticked" ...

jGrowl: with a id inside function, won't work, only if no id?

inside a normal JS function: $('#friendsPop').jGrowl("testtmee"); Wont work, but: $.jGrowl("testmeee"); Works just fine.. I have tested everything, and if i make a link outside a function, a normal a: link like this: <a href="javascript:void(0);" onclick="$('#friendsPop').jGrowl('testme');">link</a> It works fine too. But i wish...

jGrowl sticky not working in IE8

I'm using the jGrowl jQuery status-message plugin to display a sticky message on page load, and it works perfectly on all browsers except Internet Explorer 8. In this browser, there remains a small block, about 2 lines high but with no text, even after closing the sticky message. It does not have a close button, or anything, for that mat...