Search Results

Showing results 1 to 40 of 182
Search took 0.01 seconds.
Search: Posts Made By: alpha_foobar
Forum: JavaScript / DHTML / AJAX Sep 22nd, 2007
Replies: 7
Views: 2,034
Posted By alpha_foobar
Hi,
Another file would probably work. Unless it is a naming clash.

But try putting it in a JS file and linking to it from your blog.
Cheers,
Alpha
Forum: JavaScript / DHTML / AJAX Sep 22nd, 2007
Replies: 5
Views: 1,317
Posted By alpha_foobar
Hi,
You could either add the parameters you want to post in the URL, like for this page: newreply.php?do=newreply&noquote=1&p=438334

Notice that the page has a ? and then a couple of parameters...
Forum: JavaScript / DHTML / AJAX Sep 20th, 2007
Replies: 5
Views: 1,317
Posted By alpha_foobar
Hi, you want the user to go to the page they select right?

When the user goes to the next page, your page is reloaded, there are only 3 solutions I can think of for your problem. And this is a...
Forum: JavaScript / DHTML / AJAX Sep 20th, 2007
Replies: 7
Views: 2,034
Posted By alpha_foobar
Hi,
I've found loading complex javascript in blogger difficult! Firstly, even in HTML mode blogger adds <br/> tags, which will obviously break your javascript... if you can, it would be a lot easier...
Forum: JavaScript / DHTML / AJAX Sep 19th, 2007
Replies: 2
Views: 1,960
Posted By alpha_foobar
But you'd need to put an ID on the for input fields - can you do this with JSP? I don't see why not?

But you may just have your naming wrong?
Forum: JavaScript / DHTML / AJAX Sep 19th, 2007
Replies: 2
Views: 1,960
Posted By alpha_foobar
Hi saurav!
I'm not sure what is in the dwr package, but you might not be referencing it correctly? Perhaps it is util.getValue("firstName");? However you can do the same like this:
var...
Forum: Java Sep 19th, 2007
Replies: 17
Views: 8,289
Posted By alpha_foobar
Also Freelancer.com
Forum: Java Sep 19th, 2007
Replies: 3
Views: 1,645
Posted By alpha_foobar
Running web services would be recommended.

FTP does not necessarily guarantee delivery and you can't be sure the file is downloaded unless you also download a flag file. Alternatively you could...
Forum: JavaScript / DHTML / AJAX Sep 19th, 2007
Replies: 2
Views: 956
Posted By alpha_foobar
This is a very general question - I'd recommend checking out some wiki applications. Which can be on ASP.NET - I think? But .NET is a framework, for which many applications exist.

I noticed that...
Forum: Java Sep 18th, 2007
Replies: 7
Views: 2,650
Posted By alpha_foobar
Cheers vvl,
I am looking forward to getting an opportunity to use that!
Forum: JavaScript / DHTML / AJAX Sep 17th, 2007
Replies: 1
Views: 1,249
Posted By alpha_foobar
It would probably being using an AJAX method to check for updates on the chat server. These can be threaded to wait for your comments, while also checking the server for updates.

How much...
Forum: JavaScript / DHTML / AJAX Sep 17th, 2007
Replies: 1
Views: 5,373
Posted By alpha_foobar
Hi,
If you want to do this with a lot of different links and for it to work well in IE and Firefox, then you might want to change it a little... alternatively, I would use an ID attribute instead of...
Forum: JavaScript / DHTML / AJAX Aug 14th, 2007
Replies: 9
Views: 1,146
Posted By alpha_foobar
The reason your code didn't work is that you were trying to construct the element variable as if it were a string... If you wanted to to it like this, you would need to construct the javascript you...
Forum: Java Aug 13th, 2007
Replies: 7
Views: 2,650
Posted By alpha_foobar
I'm not aware of any. But it isn't an area I have spent a lot of time in.

I'd suspect that you'd need the dll to be running in a C IDE in debug mode for a seamless debug thread to work. And I...
Forum: Java Aug 13th, 2007
Replies: 7
Views: 2,650
Posted By alpha_foobar
Have you tried debugging the native object in a C ide first? The interface from Java to C tends to be pretty simple... If you are happy with what is going on in Java, then it seems like the sensible...
Forum: JavaScript / DHTML / AJAX Aug 13th, 2007
Replies: 2
Views: 2,291
Posted By alpha_foobar
I don't think there is a way to terminate the call - apart from closing the document. Prototypes are similar to objects - if you are familiar with OOP? If you have a prototype 'instance' then you can...
Forum: JavaScript / DHTML / AJAX Aug 13th, 2007
Replies: 2
Views: 4,091
Posted By alpha_foobar
You can give an html element an ID.

<img src="something.jpg" id="yourId">

Then look the object up using the ID.

var domElement = document.getElementById("yourId")

Now you have a reference...
Forum: JavaScript / DHTML / AJAX Aug 13th, 2007
Replies: 2
Views: 946
Posted By alpha_foobar
Hi, instead of a zip file - could you just post the code?
Forum: JavaScript / DHTML / AJAX May 24th, 2007
Replies: 5
Views: 3,551
Posted By alpha_foobar
It is possible to run applications on the client machine, but this is usually not appreciated by the user and involves signing trusted code.

A better alternative may be to request the client user...
Forum: JavaScript / DHTML / AJAX May 23rd, 2007
Replies: 3
Views: 2,723
Posted By alpha_foobar
You can't "import" a javascript file with a javascript file.

There is an import (and export) keyword in the javascript, but these are used for visibility of members.

I wrote some code to...
Forum: JavaScript / DHTML / AJAX May 22nd, 2007
Replies: 5
Views: 3,551
Posted By alpha_foobar
You can't do this with a HTML scripting language.

If you use a server side language - something like JSP, ASP, PHP etc, then you can scan the server directories and populate a list in the...
Forum: JavaScript / DHTML / AJAX May 22nd, 2007
Replies: 1
Views: 4,299
Posted By alpha_foobar
Hi,
There are many ways you could solve this issue and depending on your target audience, you may have to implement more than one solution.

A favourite approach is to use an AJAX solution. This...
Forum: JSP May 1st, 2007
Replies: 2
Views: 1,796
Posted By alpha_foobar
I'm not too familiar with JSP at the moment. But you are confusing your HTML code with your interpreted code... I presume that JSP is parsed once. So you shouldn't include JSP tags inside other JSP...
Forum: Java May 1st, 2007
Replies: 6
Views: 1,217
Posted By alpha_foobar
I use Notepad++ it is a highly functional text editor, available open source from sourceforge. There are alternatives liek textpad and ultraedit.

Your issue is that windows and linux/unix use a...
Forum: Java May 1st, 2007
Replies: 1
Views: 1,757
Posted By alpha_foobar
What specifically would you like to know about this problem?

An ArithmeticException is thrown when something involving arithmetic occurs that is not handled by the Java language. The example in...
Forum: Java Sep 26th, 2006
Replies: 1
Views: 1,435
Posted By alpha_foobar
system.gc is just a request to collect garbage, it won't invoke it immediately. And how long it takes depends on how much memory you have that is available for collection - not much = fast, lots =...
Forum: PHP Sep 26th, 2006
Replies: 3
Views: 20,458
Posted By alpha_foobar
The easiest way in most Linux/BSD distros is to use the default package manager, this way you are likely to install the version that is recommended and tested for your distro version and install the...
Forum: C++ Sep 18th, 2006
Replies: 6
Views: 1,155
Posted By alpha_foobar
Some C++ compilers do not require IO imports to include cin/cout. The same is true with some C compilers and printf etc.
Forum: JavaScript / DHTML / AJAX Jul 30th, 2006
Replies: 4
Views: 7,998
Posted By alpha_foobar
Sorry, the second tbody is the rest of the table.. my bad.

This all seems over complicated, why don't you use one table... or better, no tables? Then just show and hide div elements?
Forum: JavaScript / DHTML / AJAX Jul 30th, 2006
Replies: 4
Views: 7,998
Posted By alpha_foobar
I think you have forgotten to close the second tbody - this could cause your issue.
Forum: HTML and CSS Jul 13th, 2006
Replies: 1
Views: 2,276
Posted By alpha_foobar
I'd say that the problem is the spec on the machines (even if its not)... Javascript tends to be bad with string operations and regex can also be slow. Javascript can also have issues with method...
Forum: HTML and CSS Jul 13th, 2006
Replies: 7
Views: 3,327
Posted By alpha_foobar
You can't. http://www.w3.org/TR/REC-html32-19970114

But why do you want to, HTML 3.2 was superseded by HTML 4.0 in 1997. But CSS is supported, so if you truely want 3.2 level implementation you...
Forum: HTML and CSS Jul 13th, 2006
Replies: 4
Views: 3,185
Posted By alpha_foobar
now that should work... but if it doesn't then you should open up the file httpd.conf (or what ever this file is called for apache 2 on windows). Hunt down your cgi settings and change the cgi...
Forum: HTML and CSS Jul 13th, 2006
Replies: 4
Views: 3,185
Posted By alpha_foobar
I also think its a server conf problem. It sounds like you are not using your cgi, you are just trying to load the html page. Typically you don't have html in your cgi-bin, from your error it sounds...
Forum: HTML and CSS Jun 28th, 2006
Replies: 3
Views: 1,108
Posted By alpha_foobar
The default system is decimal, but if you put a '0' in front of your number it is Octal. But you would need to do your assignments without the string operator for this to take effect.

Read this:...
Forum: JavaScript / DHTML / AJAX Jun 28th, 2006
Replies: 13
Views: 31,593
Posted By alpha_foobar
I think your problem is the reload, when this happens the window probably loses all relationship references (I'm guessing). If the parent refreshes, it makes sense that your code no longer controls...
Forum: HTML and CSS Jun 28th, 2006
Replies: 1
Views: 4,968
Posted By alpha_foobar
<style type="text/css">
body
{
background-image: url('images/101.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #FFFFE5;
margin-left: 0px;
margin-top:...
Forum: HTML and CSS Jun 23rd, 2006
Replies: 1
Views: 2,899
Posted By alpha_foobar
I am not sure if this is your problem, but there is a 'feature' in internet explorer: special objects, like iframes, select boxes, appear in a different 'layer' to other objects.

It seems strange...
Forum: JavaScript / DHTML / AJAX Jun 23rd, 2006
Replies: 13
Views: 4,306
Posted By alpha_foobar
That's cool, I get bored at work. as a rule of thumb, the easier it is for people to access the problem, the easier it is for them to help.

If I can glance at the code and see I can paste it into...
Forum: JavaScript / DHTML / AJAX Jun 22nd, 2006
Replies: 13
Views: 4,306
Posted By alpha_foobar
<html>
<head></head>
<body>
<script language="javascript" type="text/javascript">
var set_action = "";
var set_path = "images/";
var set_id="<!--%ID%-->";
var set_spacer = "spacer.gif";...
Showing results 1 to 40 of 182

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC