JQuery :: Architecture Choice / Whole-nine-yards-open-source Sample Application

Mar 25, 2011

I have been away from development for a while and I'm looking for a way to get back into it. I have two questions:

1) Is the choice of javascript framework independent of the choices of all the other application parts like the object-relational mapping layer, the app server, etc? Right now, I'm looking at JQuery, and ExtJS.

2) Does anyone know where I can get a complete sample application made of open source parts and using all the best practices that I can just copy to get started?

And I mean complete... as if a real life functioning enterprise the likes of Google just zipped up their whole open-source production and development hard drives and made it all available for people to download, unzip, and run... mysql database, bug tracking system, build system, version control, connection pooling services, web server, app server, javascript libraries, internationalization resources, configured IDE, etc. etc. All of everything configured and wrapped up in a single zip file ready to go with just a few changes to IP addresses and passwords. From that we could just change things to build our own first app.I've tried getting started with a bunch of different open source application stacks and I always get stuck. And every time it happens I wonder why I can't just copy someone's entire web development folder. It's open-source and it's just ones and zeroes. Why can't we just copy it and skip the setup process and the time of figuring out best practices on our own?

View 1 Replies


ADVERTISEMENT

Open URL Either In A New Window Or New Tab Based On User's Choice?

Nov 14, 2011

I am facing an issue where a link on my website opens in a new window if you simply click on it. However, if you right click and say open in new window or new tab, it opens the same window (URL) again from where the link is clicked.

Self Service Option is a link and the JSP calls a function getSelfServSite() when the link is clicked. This is how the code flows in my case

function getSelfServSite()
{
getToTheLink("${myConfigInfo.selfServiceURL}");
// this is because the URL is configurable

[Code].....

I want it to go to the right link no matter how the user click it.

View 1 Replies View Related

Script To Open An Application?

Mar 25, 2010

I just start learning javascript and sorry if the question seem basic.

In DOS, if I write a batch file it would be START notepad.exe. This will launch the notepad application. How do you launch an application in Javascript?

View 6 Replies View Related

Using Javascript To Open An Application

Mar 27, 2001

I need to have a way to create a link that opens a specific word document.

How can I write a javascript function to do that?

View 6 Replies View Related

Windows.open Source Code

Sep 20, 2006

On most EVERY commercial site (including the pages on comp.lang.javascript) I find the following code, word for word.

<script language="JavaScript">
<!--

function SymError()
{
return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
return (new Object());
}

window.open = SymWinOpen;

//-->
</script>

Is this some "standard" code that every Web page should have. Does it
control the opening of new windows when a user clicks on a newsgroup
message.

View 2 Replies View Related

Create Event Based Open Source Calendar?

Dec 29, 2010

i need an event based calender using open source how can i create is there any free open source event based calender is there user need to boook and block his dates and edit and book the dates for his requirements

View 1 Replies View Related

JQuery :: Menu Works On Sample Html Page, But Not In Asp.net Project?

May 3, 2010

OK, so jquery code works fine on a sample test html page. However, when I try to execute the exact same code in my asp.net project, it does not work. I have included the scripts and the paths are correct so it has nothing to do with that.

$(function(){ $('ul.jd_menu').jdMenu({ onShow: loadMenu //onHideCheck: onHideCheckMenu, //onHide: onHideMenu, //onClick: onClickMenu, //onAnimate: onAnimate }); $('ul.jd_menu_vertical').jdMenu({onShow: loadMenu, onHide: unloadMenu, offset: -1, onAnimate: onAnimate}); });

That is the section of code it gives me an error on, it says " Object doesn't support this property or method"

Also, even before I run the project, I have a warning in my error list box that says: Error updating JScript Intellisense (C:~~~blah blah jquery-1.4.2.min.js

View 7 Replies View Related

Web Architecture With Javascript

Jul 20, 2005

I am faced with the task of porting a client application to a web
architecture platform, e.g. to make it browser based. The technology I
used was J2EE, e.g. servlets/JSP pages and HTML/javascript.

The application I'm talking about is displaying data from database in
grids, roughly speaking from 3 tables, that have parent-child
relationship between them, and when you click on a row in a parent
grid the content in the child grid should change.

I decided for two design patterns, that I'm now beginning to doubt,
which is the reason I'm posting this.

In order to make the design similar I created a javascript component,
Table using the rather awkard javascript notation for object oriented
programming. The usage of that table is similar to the table in Swing
or SWT: Code:

View 2 Replies View Related

Firefox Architecture

Jul 20, 2005

I have been browsing through the Mozzilla source and have been impressed
at the level to which javascript decends. Clearly there is a lot of
javascript that ends up embedded in the binaries and not as stand alone
ASCII scripts. Anybody know how this works?

View 2 Replies View Related

Specify Architecture Information To Gcc - C And C++?

Sep 21, 2009

Our project is to optimize gcc's instruction scheduling. It requires us to specify architecture information

(basically number of cycles per instruction, stall and branch delays) to gcc, to optimize structural hazard detection.

Problem: Is there any specific format in which we can specify this information to gcc? Is it possible to embed this additional architecture specific detail, in .md files?[code]...

View 2 Replies View Related

JQuery :: Can't See Source (with View Source) When Loads External Html Into A Div?

Feb 23, 2011

I got some code that loads divs from other web pages into a particular div in my main page. In other words, I click on a button, and this tells jquery to load afragment of a particular page into my main page. For instance if I have 5 web pages onrock stars, I could have 5 buttons, and each button could load one rockstar's biography into a div on the main page (and replace whatever was there before). This works, and I do see the content that it loaded. But when I do 'view source' in IE, I do not see that content (the bio of the rock star). Another clue that this content is not really there, is when I try and run some code on that content. The content (from those external pages) have divs with specific names, and I try and make them into collapsible panels by running the following short function:

var IdentifyPanels = function() {
$("DIV.ContainerPanel > DIV.collapsePanelHeader > DIV.ArrowExpand").toggle(
function() {

[code]....

View 2 Replies View Related

Use DTree Menu With Frame Architecture?

Mar 4, 2010

I was trying to use dTree navigation menu as follows:

d.add(4,0,'Profile','a href="page_1.html" target="content"');

Intention was, when i will click on profile (from my left sided menu) then the linked pages will appear on my right side frame named 'content'. But every time that is giving me the following error:Firefox can't find the file at /C:/Users/Faisal/Desktop/friday/a href=.How to use dTree menu with frame architecture?

View 1 Replies View Related

JQuery :: Multiple Source Without One Source Stop The Other

Aug 30, 2010

i don't know so much about jquery so just i use them with indication from their web site. so my problem is how can i use multiple source of jquery without one source stop the other,and that what i need:

[Code]....

View 2 Replies View Related

Ajax :: Sample Code For Form Validation Using It?

Oct 15, 2007

I need a sample code.It should be like when i have two text fields without entering the first one when i keep the mouse in to the second text box it should say in the red mark as in the right hand side of text box..

View 5 Replies View Related

Multiple IFrame History - Provided Sample Code

Feb 7, 2011

Is there a way you can control history on a specific iframe?

Let say you have these file

index.html

a.html

b.html

As you can see it's just very simple page w/ 2 frames. I created 2 button that is specific to iFrame's history but... it does not work... Yes, it does perform "back" but at the the "top" level and not at specific iframe.... I tried this on both firefox and chrome..same behavior..

View 2 Replies View Related

DHTML Drop Down Menu Sample With Framesets Used Or The Cross-frame?

Feb 10, 2006

i need a DHTML drop down menu sample with framesets used or the cross-frame..i dont have any dropdown menu creator because they are just a trial verion..

View 1 Replies View Related

2 Sample Pages Behavior Marred By Onhover And Oddly To Me A Simple Div W Table?

Feb 15, 2011

i have these 2 pages[URL]ideally my page will look something like moon.html w the menu at top...the prob is that the navigational arrows do not work and it is the header div preventing their functioningthe page ass.html has working navigational arrows but it is using the greyscale images to change the big image, how do i put the img id(what java is using to change images) on the colored version of image

View 2 Replies View Related

JQuery :: What's Your IDE Of Choice?

Jul 21, 2011

DreamWeaver? Visual Studio? gedit? n++? eclipse?

With so many choices out there, which do you prefer?

View 5 Replies View Related

Embedded Source Showing In View Source?

Jul 11, 2009

recently i noticed that all of my embedded JavaScript code and external style sheets are being shown IN "view source."

this happens in all browsers ( IE, FF, Chrome, and Safari [windows]) ... oddly enough it only happens when viewing on my vista or win2k3 machines. is this something added to these OS's or the result of an installed program? has anyone seen this before?

View 9 Replies View Related

Replace Image Source With Other Source

Nov 23, 2009

I have a website that I frequently visit (FWIW, Firefox 3.x is my browser of choice) with many image sources referring to URLs that end with "-thumbnail.jpg". However, for better image quality, I am trying to use Greasemonkey to replace all instances of "-thumbnail.jpg" in the source of images on this site with "-bigthumbnail.jpg". The closest I could think of was to somehow use getElementsByTagName and innerHTML.replace, but realized that innerHTML does not do HTML, only content.

Below is as far as I tried to get on my own,

var as,ae;
as = document.getElementsByTagName("img");
for (var i = 0; i < as.length; i++) {
ae = as[i];
ae.innerHTML = ae.innerHTML.replace(/-thumbnail/gi, "-bigthumbnail");
}
})();

View 2 Replies View Related

JQuery :: Expand And Close Accordion List By Choice Without Hover

Jun 25, 2009

I would like to ask what must i change and in which file / line so i can have instead of on hover and closing automatically the ability to expand by myself and close myself the menu with accordion list choise...the site preview is: [url]

View 5 Replies View Related

JQuery :: Update A Shopcart Depending On Radio Button Choice?

Jun 28, 2011

I'm trying to update a shopcart depending on radio button choice, the problem is when I'm submitting and want to go to the next page.

Imagine this, I'm on a page with 2 radio buttons, either u can pick A or B, depending on my choice the shopcart gets updated, and its placed in the bottom of the page, to that point everything works fine.But when I post from my form and get redirected to the next page it seems like my jquery function runs again and choose the first radio button even if i have the second selected when posting.$cart is the class object and i add the items with just a name and some price parameters.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {[code]....

View 2 Replies View Related

Random Choice?

Feb 20, 2005

I have a form with 9 radio buttons that each have a different output. I want to create a 10th radio button called "random." So when a person would select the random radio button and submitted the form, one of the 9 radio buttons would be selected as output of the form.

View 4 Replies View Related

Function Choice From Drop Down

Nov 28, 2010

I've got a form that performs a calculation upon submit.I want it to perform a different calc depending on the choice from a drop down box in the form.

View 4 Replies View Related

Tabs Out Of Which Only One Is Open At A Time N When U Open Another Tab, One Out Of The Earlier Closed One Should Open

Oct 22, 2009

I need three tabs out of which only one is open at a time n when u open another tab, one out of the earlier closed one should open(preferably with mootools). And also the tab which is opened should come at the top of the page as well.

View 1 Replies View Related

JQuery :: Querystring From One Application To Another?

Oct 19, 2011

Ineed to pass two variable in a querystring from one application (in PHP) to another (in ASP.NET). It's a one way transfer...That is I need to encrypt it in PHP and decrypt it in ASP.NET (c#). The data will be anywhere from 5 - 15 characters..only letters and numbers.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved