I have written a Javascript calender, that is dynamically generated by Javascript.
But if does not functions in IE.
here is the link to my script.
http://asexpress.de/calender/
We one looks at IE Developer tool, the newly generated contents are there but do not show in browser.
Any help please.
I'm trying to insert/load javascript (e.g. prototype/jquery) into the iFrame generated by TinyMCE (tinymce.moxiecode.com) or YUI's text editor (http://developer.yahoo.com/yui/editor/) so as to better manipulate the objects/images/DIVs inside it.
Any thoughts?
I had a Java developer new to PHP ask me this question the other day, so I thought I'd document the answer here.
Question: are PHP variables passed by value or by reference?
We are developing a very complex eCommerce portal using asp.net c# and the client asked us to make the documentation very similar (look & feel) with ebay api documentation http://developer.ebay.com/DevZone/shopping/docs/CallRef/GetSingleItem.html
Do you have any idea what kind of tool they are using and if not do you know anything that can be configured to produce a similar result ?
Thank you in advance !
Andrew
I have an ASP.NET MVC site that uses both Microsoft Ajax [Ajax.BeginForm()] and jQuery to make asynchronous requests. I want to configure both frameworks such that a generic error handler is automatically attached if the developer does not explicitly specify a failure callback.
In jQuery I can accomplish this with either .ajaxSetup() or .ajaxError(). What is the equivalent in the Microsoft Ajax client library? I'm fairly sure it's something in the Sys object but I can't find it...
Hello,
We have a CMS plugin that writes statistics to 1 table, this creates performance issues on the entire platform. We decided to use another statistics plugin which can connect to a different database server (the first plugin couldn't!) however we need parts of the first plugin.
I want to lock the statistics table to prevent misusage (not allowed to drop it by the developer) So I was wondering if a lock table could do this or if I can implement some sort of read only table
Sometimes I watch screen casts where someone is using text mate.
I'm a rails developer, so these are rails screen casts.
They'll type something like:
def
for example
and "end" will automatically appear underneath.
I do have the bundle for Rails enabled - why doesn't this happen for me?
Thanks!
I am a new iphone developer and was wondering if I could get some help with some code. I just want to know how to export basic character strings and variables to a website to be used by a third-party program.
Basically, if I had something as basic as:
int variableOne;
int variableTwo;
What code would I use to export these variables to a website?
Please, have a look at: http://twitter.github.com/bootstrap/base-css.html
There are many examples like this one:
if you look closer to the block borders, you can see that the gray block is under the white one. Using the browser's developer tools you can see that both boxes have an inherited z-index: auto;
I can't reproduce this effect on my website (without using z-index).
So, my question is: Why is the gray block under the white one?
To me, as a developer and as a user, I find the empty string ("") useless and the cause of much confusion, it's like saying string == char[]
Maybe computers need the empty string, so I'd like to learn why.
Hi there,
Is there a way to change the name that displays on the AppStore, rather than the name associated with the credit card/apple ID associated with the developer programme?
For example, if my name on my credit card was foo, and the name on the apple ID was foo, but I actually want the name displayed on the AppStore (i.e. next to my App's name and details) to be bar.
BTW: The programme is individual.
Many thanks,
Jack
Should multiple developers work within the same branch, and update - modify - commit ? Or should each developer have his/her own each branch exclusively? And how would sharing branches impact an environment where you are doing routine maintenance as opposed to unmaintained code streams? Also, how would this work if you deploy each developers work as soon as it is done and passes testing (rapidly, as opposed to putting all of their work into a single release).
Hi, I'm finally ready to upload my Android app to the market. I didn't create a fancy icon like it shows at the android developer site. I just made an image that I liked and made it 48x48 png. Will that be ok?
It seems common to find horrific developers in a company.
Why are they still employed? Is the management misinformed? Or are they employed for some other reasons?
I assume that every developer should at least understand what his/her code is doing.
I am writing a java servlet (struts/JSP etc). I am trying to style a progress bar using CSS in a JSP page but get this error when using chrome's developer tools:
Resource interpreted as image but transferred with MIME type text/plain.
<%@ include file="../include/css/default.css" %
And in the CSS file:
background:url(../images/bg_bar.gif) no-repeat 0 0;
Could anyone explain why this is and show how I can use this CSS in my page?
I've run this on a device and on the emulator. The app stops unexpectedly on both
I have not a clue what is wrong currently
It uses Google API Maps I compiled with Google Api 7
Followed this tutorial http://developer.android.com/guide/tutorials/views/hello-mapview.html
(Made some alterations clearly)
I did use the correct API Key That the final apk is signed with
This is the source(If you compile it shouldnt work as it is unsigned)
This is the compiled signed apk
One of the major challenges for any java developer is try to keep in pace of development of the language and new tools. Java is evolving all the time and it happens often that I hear from a friend or colleague about some useful tool I had never heard of before.
I'd love to hear about how people find out when new java specs come out or an interesting, new tool is released? For example, what java blogs do you follow?
Specifically some that may cater to an experienced developer (C#) but not necessarily familiar with Java/Eclipse?
I have seen a couple vids on YouTube but they are either short (not much you can learn in 3mins or patronizing)
Hi,
I'm been developing Ruby on Rails previously. I'm now looking at an ASP.net web app and I'm looking at WebForms and MVC. As I look at MVC it feels as if I'm looking at the result of something a Ruby on Rails developer implemented after being forced to work in MS land. So I'm wondering:
Was MVC more or less taken directly from Ruby on Rails and it's concepts? (either intentionally or unintentionally)
I have installed Visual Studio Express Web Developer 2010 and boy it really slows my system down a lot. Is there a way to identify the services like SQL Server and set them to manual so I can avoid all my memory resources been occupied when not using Visual Studio? Is it just SQL Express the problem or are there any other things I should consider disabling in order to have a fast and reliable system when not using Visual Studio?
Thanks!
If we compare Windows and Web applications against following criteria
Insight of .NET and OS
Design Patterns
Logic development
Development of a fresher into a good developer
which one is better.
Where can I find the values that inputType can have?
I'm aware of http://developer.android.com/reference/android/text/InputType.html, but how should the values look like in layout xml files?
Hi,
I've seen so much C# code in my time as a developer that attempt to help the GC along by setting variables to null or calling Dispose() on classes (DataSet for example) within thier own classes Dispose() method that
I've been wondering if there's any need to implement it in a managed environment.
Is this code a waste of time in its design pattern?
class MyClass : IDisposable {
#region IDisposable Members
public void Dispose() {
otherVariable = null;
if (dataSet != null)
dataSet.Dispose();
}
#endregion
}