Saturday, October 31, 2009

[jQuery] Installing jQuery to use jQuery UI

Hi all,

I'm trying to use the jQuery library. I want to use the accordion and
tabs widgets for a class project. I'm teaching myself javascript DOM
scripting and I found out about jQuery.

I have downloaded the jQuery UI downloads, but according to a post I
received on the jquery UI discussion board, I also need to download
jQuery.

I went to the http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery
page where info on downloading and installing are listed.

I'm unclear on what to download for jQuery and exactly what is needed
to install it.

I am running Windows XP Professional. I'm not running Java or UNIX
and I don't understand exactly what "make" or "ant" is. I sorta
remember seeing "ant" in the eclipse software, but I'm not sure. It
was a summer job and I was using UltraEdit to write HTML and CSS.

Could someone help me with this installation? I don't understand the
directions at http://docs.jquery.com/Downloading_jQuery.

I only want to use the jQuery UI. Is that possible?

Thanks.

[jQuery] How to post modified XML document whose source was an AJAX get

I'm trying to take some XML I receive from an AJAX call (via a "GET"),
manipulate it, then POST the document to an ASP.NET page. My "get"
looks like this:

var createNewUsersExtendedAttributes = function()
{
$.ajax({
type: "GET",
url: "<someURL>",
dataType: "xml",
cache: false,
success: processExtendedAttributes(xml),
error: function() {
// handle error
}
});

}

processExtendedAttributes = function(xml)
{
// set a member variable in this class
userProfileExtendedAttributes = $(xml);
}

Elsewhere in my code, I manipulate nodes in the member variable
"userProfileExtendedAttributes". All of this works great. However, I
have problems when I want to take that XML document and do a POST with
it:

$.ajax({
type: "POST",
url: "<someURL>",
processData: false,
contentType: "text/xml",
// remember, the userProfileExtendedAttributes
variable was assigned in the above success callback using $(xml)
data: userProfileExtendedAttributes,
success: function(data)
{
alert('success!');
},
error: function(request,status,errorThrown)
{
alert('failure!');
}
});

I've played with the usual suspects (processData, contentType, etc.),
and they are not fixing the issue. If I debug the page to which I'm
posting (or look at HTTP headers being sent to the page), I get
nothing in terms of posted data (note: if I put simple name/value
pairs in the data parameter, I do see those). I understand that when
I call the function that uses the post code above, the member variable
"userProfileExtendedAttributes" is NOT a string representation of the
XML document (it's actually a reference to a jQuery instance of an XML
document). I believe this issue is happening because I'm not sending
an XML string to the page I'm posting to, however, I cannot for the
life of me figure out how to get this XML document serialized so that
I can post it. Any help would be greatly appreciated!

Re: Are there any books on the GWT?

http://code.google.com/webtoolkit/books.html

On Thu, Oct 29, 2009 at 6:38 AM, jdwyah <jdwyah@gmail.com> wrote:

Pro Web 2.0 with GWT http://tinyurl.com/44y3df (I wrote it) came out
with 1.5 so it has some coverage of ImageBundle, Gears integration and
the like and uses java 1.5 throughout. None of the newest goodies
though.

On Oct 28, 12:52 pm, "wil.pannell" <wil.pann...@pepsiamericas.com>
wrote:
> GWT in Practice was written by Charlie (I forget his last name but
> he's a frequent poster on this message board).
>
> It has the most-detailed treatment of how to engineer a GWT
> application of any of the other books, and because the books deals
> mostly with core application development, it hasn't gone stale,
> although it was published prior to GWT 1.5.
>
> On Oct 28, 11:21 am, Jason Essington <jas...@GreenRiverComputing.com>
> wrote:
>
>
>
> > My favorites are "GWT in Action" by Rob Hanson and Adam Tacy, and  
> > "Google Web Toolkit Applications" by Ryan Dewsbury
>
> > Unfortunately both of these were published over a year ago, so GWT has  
> > undergone some changes since then. They do have some very good  
> > information, but things in the GWT world are a bit different now.
>
> > Someone really needs to work on a new book that covers RunAsync,  
> > UIBinder, Animations, MVP design and all of the shiny new bits that  
> > have appeared in GWT since 1.4.
>
> > I know that Bruce and Joel had announced that they were working on a  
> > book, but that was eons ago, so I assume that effort was abandoned in  
> > favor of continuing to develop GWT.
>
> > -jason
>
> > On Oct 26, 2009, at 9:34 PM, Tim wrote:
>
> > > Has anybody written any actual printed books on the GWT?



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Re: python gwt

a python based GWT would be very nice, the pyjamas project is very
nice, but with google working on it, we would end up having a very
stable and tested framework. Doing this would be very easy, I mean, i
support the Pyjamas project but, GWT had 80,000 lines of source code
in their current java version and when ported to python this same
usability was reduced to a 10% of it with only 8,000 lines. Plus, if
it becomes a google product or project, it would be maintained and
updated in the same way the current GWT is.


On Oct 15, 8:01 am, Arthur Kalmenson <arthur.k...@gmail.com> wrote:
> You could always look at Pyjamas project as an alternative:http://code.google.com/p/pyjamas/. I've never used it so I can't say
> how good it is, but it has quite a few people on the project, if that
> says anything :P
>
> --
> Arthur Kalmenson
>
>
>
> On Sun, Oct 4, 2009 at 4:44 PM, alf <alberto....@gmail.com> wrote:
>
> > Why google team choose java to compile into javascript when create GWT
> > I think best had beenpythoncompile into javascript this away server
> > and client will be same and in my casepythonis better than java.
>
> > thanks

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Re: Cannot install GWT Eclipse plug-in

I have the very same problem :-/

On 29 Okt., 02:01, "Gamer_Z." <zmy...@gmail.com> wrote:
> I cannot install the GWT plug-in on Eclipse (3.5/Galileo).  I have re-
> installed Eclipse several times.  I have also copied Eclipse on a
> flash drive to a friend's computer and the plug-in installed fine
> there, so it is not a problem with Eclipse.  When I get to step four
> ofhttp://code.google.com/eclipse/docs/install-eclipse-3.5.html, I get
> the message "The operation cannot be completed.  See the details."
> The "Details" are below:
>
> Cannot complete the install because one or more required items could
> not be found.
>   Software being installed: Google Web Toolkit SDK 1.7.1
> 1.7.1.v200909221731
> (com.google.gwt.eclipse.sdkbundle.e35.feature.feature.group
> 1.7.1.v200909221731)
>   Missing requirement: Google Web Toolkit Plugin 1.1.2.v200910130758
> (com.google.gwt.eclipse.core 1.1.2.v200910130758) requires 'bundle
> org.eclipse.wst.sse.core 0.0.0' but it could not be found
>   Missing requirement: Google Web Toolkit Plugin 1.1.2.v200910131704
> (com.google.gwt.eclipse.core 1.1.2.v200910131704) requires 'bundle
> org.eclipse.wst.sse.core 0.0.0' but it could not be found
>   Cannot satisfy dependency:
>     From: Google Web Toolkit SDK 1.7.1 1.7.1.v200909221731
> (com.google.gwt.eclipse.sdkbundle.e35.feature.feature.group
> 1.7.1.v200909221731)
>     To: com.google.gwt.eclipse.sdkbundle.win32 [1.7.1.v200909221731]
>   Cannot satisfy dependency:
>     From: Google Web Toolkit SDK for Win32 1.7.1.v200909221731
> (com.google.gwt.eclipse.sdkbundle.win32 1.7.1.v200909221731)
>     To: bundle com.google.gwt.eclipse.core 0.0.0

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

GWT no NetBeans

Olá, amigos.

Estou iniciando com o framework GWT e optei por trabalhar no NetBeans,
e tenho obtido sucesso. Até agora. O meu problema é na aplicação de
"estilos". O arquivo .xml do meu aplicativo está da seguinte forma:

<?xml version="1.0" encoding="UTF-8"?>
<module>
<inherits name="com.google.gwt.user.User"/>
<!-- <inherits name="com.google.gwt.user.theme.standard.Standard"/
> -->
<!-- <inherits name="com.google.gwt.user.theme.chrome.Chrome"/> --
>
<inherits name="com.google.gwt.user.theme.dark.Dark"/>
<entry-point class="org.stockwatcher.client.MainEntryPoint"/>
<!-- Do not define servlets here, use web.xml -->
</module>

O problema é que, independente do estilo que eu escolho (Standard,
Chrome ou Dark), a minha opção não afeta em absolutamente nada no
visual no navegador quando executada.

A impressão que eu tive desde o início é que o design não fica tão
agradável como o esperado, e só fui me dar conta desse problema quando
testei os três estilos e também nenhum deles (quando eu apago todos os
3 estilos, não faz a menor diferença no visual).

O que pode estar acontecendo?

Obrigado,

Lucas Ramos

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

[gwt-2.0.0-ms2] com.google.gwt.junit.client.TimeoutException: The browser did not contact the server within 60000ms.

Hello,

I have a fully working webapp built with GWT-2.0.0-ms2's UiBinder.
Recently I decided to get it covered by unit tests using GWTTestCase,
but after coding a simple test case:

public class MyTest extends GWTTestCase {

@Override public String getModuleName() {
return "foo.bar.MyApp";
}

public void testAnythingYouWant() {
assertTrue(true);
}

I stumbled on this:

com.google.gwt.junit.client.TimeoutException: The browser did not
contact the server within 60000ms.
- 1 client(s) haven't responded back to JUnitShell since the start of
the test.
Actual time elapsed: 60.009 seconds.

at com.google.gwt.junit.JUnitShell.notDone(JUnitShell.java:800)
at com.google.gwt.junit.JUnitShell.runTestImpl(JUnitShell.java:989)
at com.google.gwt.junit.JUnitShell.runTest(JUnitShell.java:436)
at com.google.gwt.junit.client.GWTTestCase.runTest(GWTTestCase.java:
386)
at com.google.gwt.junit.client.GWTTestCase.run(GWTTestCase.java:269)
at com.intellij.junit3.JUnit3IdeaTestRunner.doRun
(JUnit3IdeaTestRunner.java:108)
at com.intellij.rt.execution.junit.JUnitStarter.main
(JUnitStarter.java:60)

Process finished with exit code 255

The same test works fine when targeting a module NOT UiBinder-based.

Any hint? I am using IDEA on a Mac, with the following VM arguments:
-XstartOnFirstThread -Xmx512M

Thanks in advance,
Tiago Fernandez

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

{smartbroker} ممنوع الدخول لأصحاب القذف السريع

ممنوع الدخول لأصحاب القذف السريع











 

 Sexy Entertainment for Everyone -     Teenage4u GroupsSexy Entertainment     for Everyone - Teenage4u Groups Sexy Entertainment for   Everyone -   Teenage4u Groups Sexy Entertainment for Everyone -     Teenage4u Groups

إضغط هنا للتحميل

 


--~--~---------~--~----~------------~-------~--~----~
Hi notice form manager
This group just for real estate and good things so plz  no bad email plz just notice to my email if u find any bad thing we need to keep this group as a helper . so feel free to send me email any time for complain or to remove u from the list
تم تخصيص المجموعة فقط للعقارات و أي موضوع جيد يرجى عدم إرسال أي رسالة مزعجة أو سيئة
يرجى المساعدة في إعلامي عن أي شئ مسيء  لنرتقي بالمجموعة للمستوى المطلوب

My email is
uaesmart1@gmail.com
Take care
-~----------~----~----~----~------~----~------~--~---

~|| Hot Babe Waiting for you to fuck with you ||~






 







--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Work From Home Make Money Online" group.
To post to this group, send email to trgbests-home-base-business@googlegroups.com
To unsubscribe from this group, send email to trgbests-home-base-business+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/trgbests-home-base-business?hl=en
-~----------~----~----~----~------~----~------~--~---

Crazy Girls Sex Adult XXX DVD & Online Movie Reviews & Download

Sunshine Seiber is a soccer team coach that loves to fuck.Sunshine Seiber is a soccer team coach that loves to fuck.Sunshine Seiber is a soccer team coach that loves to fuck.

Sunshine Seiber is a soccer team coach that loves to fuck.

Sunshine Seiber is a soccer team coach that loves to fuck.Sunshine Seiber is a soccer team coach that loves to fuck.Sunshine Seiber is a soccer team coach that loves to fuck.Sunshine Seiber is a soccer team coach that loves to fuck.

Sign up for full access to My First Sex Teacher's

Sunshine Seiber is a soccer team coach that loves to fuck.Sunshine Seiber is a soccer team coach that loves to fuck.Sunshine Seiber is a soccer team coach that loves to fuck.

My First Sex Teacher has TONS more porn


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "belajar forex malaysia" group.
To post to this group, send email to belajar-forex-malaysia@googlegroups.com
To unsubscribe from this group, send email to belajar-forex-malaysia+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/belajar-forex-malaysia?hl=en
-~----------~----~----~----~------~----~------~--~---


Real Estate