Bret Waldow wrote:I am starting the design of an application primarily for Linux machines, although perhaps it might be used on Macs too. I am not targeting Windows at all.
I'm probably going to use the GWT in a browser as the main UI - Firefox or Google Chrome when it's generally available. I expect either can run Javascript locally, but there are some features that may require a server. One would be to access a shared system library to ask for computation - it appears this violates one of the design choices for browsers, and so would require a local server (servlet, REST, or SOA) to allow access.
The question is not 'which one'. The question is 'how do I know if the user has already installed a server, and how do I install my app to that if it's already there?'
If I were to choose Tomcat, how would I know if they already have Tomcat installed? If they have Apache, what do I do then?
How is this question resolved for applications that require a server to function on Linux (and Mac) machines?
Thanks for help and pointers.
Regards,
Bret
Pawel Nowacki wrote:Hi Ranchers,
I have a form with text input and this is the function that is executed onchange event (inputObject is the input text object that this event was fired on):
Now when alert comes out it says: current=*123.00* new=*123.00* but it shows B on the next alert, why??
Both variables should be strings. originalInputValues array consist of inputObject.value's previously inserted.
It seems so obvious to be equal. Why it is not??
I've tried equals() and eval(). Please help![]()
Nikes Shah wrote:Hello friends,
I am new to Ajax development.
Can anyone tell me use of Ajax? Is it for UI development also or just for small part of data processing?
What I see on various sources is that there are various libraries available also like ext, DOJO, YUI (Yahoo User Interface), GWT (Google Web Toolkit).
Can anyone tell differences briefly among there and their purpose?
Ritu varada wrote:Thanks Ankit. It displays okay if I have 'color-red' but if I do
pausecontent[2]="<div class= & # 39color-red & # 39>Trying out javascript quotes today , 08/27/2009
</div>"
It still does not convert the & #39 to single quotes whereas it converts & # 44 to be comma.
Bret Waldow wrote:
Bear Bibeault wrote:Not directly. You can use an Ajax request to fire off a server-side resource to execute it.
Thanks.
I'm interested in more ideas like this, but I'm also interested in doing it without any server.
I'd like to know if there is a way I can call that library without any server, as a browser will let me load and run local content from the file system without one - and the browser includes a Javascript engine to run locally based code. I want to leverage the substantial abilities current browsers have to work with local content for a browser-based application.
I know the user can load files from the local system without a server. Can I access a local system library without a server? Can I get a remote page from the internet in another tab, and drag content off it to another locally stored page? This seems likely, as I can copy images off a web page from Firefox and save them.
I might also find reason to have a server for some other functionality as I develop my application, but knowing the limits of Javascript will be helpful, so I'd like to hear about both approaches - with and without.
Cheers,
Bret
Eric Pascarello wrote:You can hide columns by using colgroup and setting the display to none for col.
Eric
Eric Pascarello wrote:I did not feel like messing with reg exp when I wrote it.
![]()
Eric