AJAX ???

Let us know what you would like to see in the next version of this software

Moderator: kfury77

Forum rules
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
  • Do not create new topics for already requested features. Add your comments to the existing feature request topics instead;
  • Create separate topic for each feature suggestion. Do NOT post a number of non-related feature suggestions in a single topic;
  • Give your topic a meaningful title. Do NOT create topics with meaningless titles, such as "My Suggestion" or "My Problem".
Please note that we DO READ all suggestions, even if a reply is not posted. Thanks!
Post Reply
Emulman
Posts: 34
Joined: Thu Jan 19, 2006 8:22 pm
Location: Genoa, Italy
Contact:

AJAX ???

Post by Emulman »

it would be nice if you add support for AJAX and incorporate for example DOJO TOOLKIT which is open source..with some wizard to build easily, for example, the code for some type of windows in AJAX too!!
User avatar
syrupcore
Top Contributor
Posts: 917
Joined: Thu Jul 21, 2005 12:58 am
Location: Portland, Oregon, usa
Contact:

Post by syrupcore »

it's almost all there already. SQL browser plus a good ajax library like prototype and it's within reach!

while an AJAX wizard would certainly help sell a bunch of copies of webuilder on announcement, I can't imagine implementing such a thing in a useful manner would be easy or ultimatly useful. perhaps for a few 'form fill out' type of things. sounds dreamweaverish to me!
peep
Posts: 25
Joined: Thu Feb 15, 2007 10:20 am

Post by peep »

syrupcore wrote:it's almost all there already. SQL browser plus a good ajax library like prototype and it's within reach!

while an AJAX wizard would certainly help sell a bunch of copies of webuilder on announcement, I can't imagine implementing such a thing in a useful manner would be easy or ultimatly useful. perhaps for a few 'form fill out' type of things. sounds dreamweaverish to me!
there are too many AJAX toolkits out there...

I have written mine too - no reason to incorporate dozens of mess
User avatar
syrupcore
Top Contributor
Posts: 917
Joined: Thu Jul 21, 2005 12:58 am
Location: Portland, Oregon, usa
Contact:

Post by syrupcore »

it's true, there are quite a few. I'm currently in love with jQuery. Mixed with Firebug, I'm trying remember how I ever dealt with Javascript without them. :D
Ingus
Posts: 29
Joined: Sun Mar 05, 2006 12:41 pm
Location: Riga, Latvia
Contact:

Post by Ingus »

syrupcore wrote:I'm currently in love with jQuery. Mixed with Firebug, I'm trying remember how I ever dealt with Javascript without them. :D
the same here :)
User avatar
syrupcore
Top Contributor
Posts: 917
Joined: Thu Jul 21, 2005 12:58 am
Location: Portland, Oregon, usa
Contact:

Post by syrupcore »

Firebug is bordering on miraculous. my snippets library has changed a lot over the last month. I use ctrl+shft+c for console.log(""); and ctrl+alt+$ for $("") quite a bit. ;) death to alert boxes!

anyone reading this who isn't familiar with jQuery or more importantly firebug... you're only doing yourself a disservice by not downloading them both. make's coding fun again.

http://getfirebug.com/
http://jquery.com/

and in case the jquery site doesn't get you excited by itself (so little code, so much power) check out interface - a series of plugins for the jquery library:

http://interface.eyecon.ro/

Will
User avatar
chrisjlocke
Top Contributor
Posts: 995
Joined: Mon Aug 01, 2005 4:12 pm
Location: Essex, UK
Contact:

Post by chrisjlocke »

I've just found GreaseMonkey, which allows you to use javascript scripts on web pages after they've been rendered. Allows you to do all manner of things on websites which you can't normally do. I've never learnt javascript, so will be learning that soon. I can do VB and PHP to a degree, so another language will be useful!
I think I'll open a javascript forum on my website so I can ask you guys for help and tutorials! ;)
User avatar
syrupcore
Top Contributor
Posts: 917
Joined: Thu Jul 21, 2005 12:58 am
Location: Portland, Oregon, usa
Contact:

Post by syrupcore »

I have yet to mess with greasemonkey but keep saying I will. Chris, now you've given me a perfect excuse. :)

on to the power of jquery.... For a site in dev right now, the client asked that all external links open in a new window. target="_blank" sucks. first of all, it's deprecated and I like my HTML clean. Second, what if they change their mind next month and realize that opening links in a new window really sucks? I'd have to go through the entire site and clean out the target="_blank"s. yuck. if I keep it in script, my code stays clean and changes are easy from a single external js file.

Code: Select all

$("a[@href^=http://www]").click( function () {
      window.open(this.href);return false
}//end function
);//end click
get all <a>s whose href attribute starts with "http://www" and attach a function to it when it's clicked. less code, more power. jquery all the way.

I'm so ready for the webuilder jQuery plugin. :D
charlesroper
Posts: 34
Joined: Wed May 10, 2006 9:57 am

Post by charlesroper »

I've been using jQuery for a while now and I agree: it rocks.

Regarding Firebug, see my X-Ray post for my Firebug-like feature request. The only frustrating thing about Firebug is that the dynamic edits one makes to CSS and HTML using it aren't persistent, requiring me to remember what tweaks I've just made, then jumping back to WeBuilder and recreating them. I'd love to see Firebug functionality available within WeBuilder, but with non-volatile editing capabilities.

Charles
Post Reply