[jQuery] Re: There is no group named jquery-ui.

2009-08-25 Thread Fontzter
Yes, it is down. I just found this thread: http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/3e12d8836f6879a2?hl=en On Aug 25, 10:42 am, Fontzter dmfo...@gmail.com wrote: Anyone else getting this when they try to visit the google group for jQueryUI?

[jQuery] There is no group named jquery-ui.

2009-08-25 Thread Fontzter
Anyone else getting this when they try to visit the google group for jQueryUI?

[jQuery] Re: jqGrid with c#

2009-08-05 Thread Fontzter
If you user a DAL like SubSonic many have a ToJson() function. This article might help. Maybe you could tweak it to return things in the jqGrid format. http://www.codeproject.com/KB/aspnet/ASPNET_DataTable_to_JSON.aspx I think a DAL or Linq or something else that handles paging is your best

[jQuery] Re: Bug? -- toggle() of TR broke in IE8

2009-08-05 Thread Fontzter
(people are so quick to shout out that word). Boiled down, you can't do a lot of things to tr's in IE, and display none is one of the things you can't change. - Liam Fontzter wrote: bump? Can anyone confirm this? On Jul 29, 9:52 am, Fontzter dmfo...@gmail.com wrote: I put together

[jQuery] Re: Bug? -- toggle() of TR broke in IE8

2009-08-04 Thread Fontzter
bump? Can anyone confirm this? On Jul 29, 9:52 am, Fontzter dmfo...@gmail.com wrote: I put together a simple case to demonstrate this:http://jsbin.com/ijini This works in other browsers but not IE8. Thanks, Dave

[jQuery] inArray not working with dates

2009-07-31 Thread Fontzter
Can someone tell me what I may be doing wrong here? var dateList = new Array(); dateList.push(new Date(2009,7-1,29)); dateList.push(new Date(2009,7-1,30)); dateList.push(new Date(2009,7-1,31)); var testdate = new Date(2009,7-1,30);

[jQuery] Re: inArray not working with dates

2009-07-31 Thread Fontzter
alert(dt1.getTime() === dt2.getTime()); //true Dave On Jul 31, 10:16 am, Fontzter dmfo...@gmail.com wrote: Can someone tell me what I may be doing wrong here?         var dateList = new Array();         dateList.push(new Date(2009,7-1,29));         dateList.push(new Date(2009,7-1,30

[jQuery] Bug? -- toggle() of TR broke in IE8

2009-07-29 Thread Fontzter
I put together a simple case to demonstrate this: http://jsbin.com/ijini This works in other browsers but not IE8. Thanks, Dave

[jQuery] Superfish menu - add dynamic content

2009-02-17 Thread Fontzter
Hi, I am using Superfish for a navigational menu on a site. At certain times I need to add content to the menus. I do this with an ajax call and then insert the elements into the DOM at the appropriate location within the menu. How would I then activate the superfish functionality on these

[jQuery] Re: how to change direction of sub-indicator arrow in superfish

2009-02-17 Thread Fontzter
You need to alter the image file arrows-ff.png so that the arrows are pointing the opposite direction. On Feb 17, 10:31 am, seezee debbil...@gmail.com wrote: near as i can tell, this is handled in the javascript, not the style sheet. i've modified my style sheet for the horizontal menu so

[jQuery] Visual Studio Intellisense Issues

2008-11-12 Thread Fontzter
Is anyone else having trouble getting the new VS 2008 intellisense to work? I have downloaded SP1 and the hotfix. I can get it working on the jquery file. However it seems to break on any plugin that uses this syntax: (function($) { ... } )(jQuery); Any thoughts or suggestions would help.

[jQuery] Re: Visual Studio Intellisense Issues

2008-11-12 Thread Fontzter
-IntelliSense-i... l-Studio-2008.aspxhttp://weblogs.asp.net/scottgu/archive/2007/06/21/vs-2008-javascript-... sense.aspx Hope this helps. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Fontzter Sent: Wednesday, November 12, 2008 10:14 AM

[jQuery] Re: jdMenu zindex

2008-06-10 Thread Fontzter
Kyle, I think it has to do with the position and floats in your divs. For example remove the float: left from ColB and you will see the menu cover it. You may want to use absolute on the menu. Dave On Jun 10, 4:07 am, kylebuttress [EMAIL PROTECTED] wrote: Hello, I'm using jdMenu on a

[jQuery] Root menu item causes menu to disappear in jdMenu 1.4.1

2008-06-09 Thread Fontzter
I noticed that the entire menu hides when you click on an li at the top level. I put together a test page to demonstrate it but then realized that it occurs in the jdMenu.html example that is part of the zip download for version 1.4.1 Has anyone else noticed this? If so, what is the best work

[jQuery] Re: How to select all in same row but not current one

2008-06-09 Thread Fontzter
Wes, Why not use radio inputs and group them by rows, thus handling the issue intrinsically. If you must have them as checkboxes, this plugin should meet your needs: http://www.texotela.co.uk/code/jquery/checkboxes/ Dave On Jun 9, 11:52 am, wesbird [EMAIL PROTECTED] wrote: Hi,   I have

[jQuery] Another jQuery Camp after TAE conference?

2008-05-21 Thread Fontzter
I am going to put in a request at work to attend The Ajax Experience conference this fall in Boston. Last year there was a jQuery Camp following that conference. Does anyone know if there are plans to do the same thing this year? I want to make sure my travel/hotel arrangements will

[jQuery] Re: jQuery TShirt

2008-05-09 Thread Fontzter
$(complicatedCode).hide();

[jQuery] Re: Jquery spell checker

2008-05-01 Thread Fontzter
Any leads on this? This is a common request of IE6 users. I would like to have an elegant solution using jQuery. On Apr 4, 8:53 am, rsmolkin [EMAIL PROTECTED] wrote: Has anyone seen aspellcheckerfor text areas written in Jquery? I'm looking for one that is either stand-alone or can be used

[jQuery] Excel-like table functions

2008-04-08 Thread Fontzter
Hi, I am trying to implement Excel-like functions on an html table. Some of the cells are static and contain calculations and some have input boxes in them. The change event of the input boxes fires a recalculation function. This function does some Excel-like calculations on the table data.

[jQuery] Re: flashing/blinking effect

2008-04-08 Thread Fontzter
Have a look at .animate, which can queue these effects. You could likely use opacity. http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback Dave