The screen reader (JAWS) is able to read the textfield in flash on Google's Chrome but not in Internet Explorer 8. I'm using the latest version of swfobject.
I downloaded and install the latest version of Google App Engine Plugin into my Eclipse and created a project with it using both GAE SDK and GWT SDK.
The funny thing is, randomly, my project become subjective to error, like the class RemoteServiceServlet cannot be resolved.
The errors will be removed if I go to the configure tab of the project and change the GWT SDK from Default to Specific version (or vice versa).
Has anyone ever encountered the same error? What the heck is it?
I just downloaded the Google Collections sources and imported them into a new Eclipse project with JDK 1.6.
They don't compile for a couple of reasons:
javax.annotation.Nullable can not be found
javax.annotation.ParametersAreNonnullByDefault can not be found
Cannot reduce the visibility of the inherited method #createCollection() from AbstractMultimap
+ 11 similar ones
Name clash: The method forcePut(K, V) of type AbstractBiMap has the same erasure as forcePut(Object, Object) of type BiMap but does not override it
+ 2 similar ones
What am I missing?
I also wonder if unit tests for these collections are available to the public.
Actually I want to serialize my data using Google's java implementation and then deserialize using C# implementation?
I have chosen portobuf-net as it seems to be more stable (porto# is still v0.9 or I would have gone for it). Before I start working on it I wanted to be sure that I can achieve this (serializing data using java implementation and deserializing it using potobuf-net). Or is there any list of methods that are specific to portobuf-net implementation?
May i inquire more knowledge on marshaling and unmarshaling of kml codes? Regarding those used in Google earth. I need to do a project on flight airlines, linking them with an arc which is a polygon to connect placemarks with placemarks. I've tried to compile sample codes of HelloKML but still unable to marshal and produce the kml codes itself. Please someone explain marshaling and unmarshaling of codes and producing of kml codes. Thanks in advance.
Hello, whenever we go to Google Page and click on the "more", a menu will be dropped down. I would like to have the following effect on my web site too. May I know which JavaScript library can help me to achieve the similar effect?
I am messing around with one of my databases.. is there away for me to search for a string in ALL the tables.. and replace it with another everywhere it occurs?
I am looking for SQL
I need help resolving this Google Chrome Error..."Uncaught Error: SECURITY_ERR: DOM Exception 18"
Here is the code.
//Get Cookie
function get_cookie (cookie_name)
{
var results = document.cookie.match ( '(^|;) ?' + cookie_name + '=([^;]*)(;|$)' );
if (results)
return ( unescape ( results[2] ) );
else
return null;
};
Many thanks,
C
Is there any URL from google maps, that returns me the latitude and longitude of an address.
i want to use these lat and long details in iPhone Map kit to plot some information.
I would like to know as a newbie programmer what the benefits are of using for example googlesearch API or newest buzz API for data content gathering instead of screen scraping; obviously apart from the legal aspects.
Well the topic says it all. Can I use google web toolkit to generate my views to be used in Castle Monorail project and render it through nvelocity view engine. Is it at all possible?
Hey guys. I'm a CSS newbie and I was wondering how websites like bing.com or wolframalpha.com create their search buttons inside of of the text field? If you go to each website, you can see clearly what I mean.
Actually I want to serialize my data using Google's java implementation and then deserialize using C# implementation?
I have chosen portobuf-net as it seems to be more stable (porto# is still v0.9 or I would have gone for it). Before I start working on it I wanted to be sure that I can achieve this (serializing data using java implementation and deserializing it using potobuf-net). Or is there any list of methods that are specific to portobuf-net implementation?
I have been playing around recently with jqgrid and am at loss on how to implement search in my controller using PHP (Zend).
I came across a post that is quite similar to the answer am looking for but what I need is the PHP version not ASP.NET.
I need to write a rich text editor similar to Google Doc. Does anyone know any samples of similar projects? What technologies will I need? and what process is involved?
what is wrong with such code
public List<SearchItem> Search(string find)
{
return (from i in _dataContext.News where i.Text.Contains(find) select new SearchItem { ControllerAction = "test", id = i.Id.ToString(), LinkText = "test" }).ToList();
}
public struct SearchItem
{
public string ControllerAction;
public string LinkText;
public string id;
}
Hi,
date = re.search(r'<td>([\x\d\w-.\s,()&\"]+|)<br><font',page_data)
I am migrating a code from PHP to Python, and am using this piece of regex expression on re.match, which doesn't work, giving a python error of:
raise error, v # invalid expression
It works on PHP's preg_match, and also http://www.gskinner.com/RegExr , any idea why this is happening? Thanks!
i have been type some string inside textfield that is "KD-G435MUN2D"...
i already use this code for search "UD" character from that string:
<script>
var str="KD-R435MUN2D";
var patt1=/UD/gi;
document.write(str.match(patt1));
</script>
but this code doesn't work..where is my fault?
When I look at the example of the user extensions of GWT-Ext I saw the Spinner as a user extension: http://www.gwt-ext.com/demo-ux/#spinner
When I download the library from http://code.google.com/p/gwt-ext-ux/downloads/list (I downloaded the latest build -- 0.3.0) it does not appear to contain the Spinner class.
Can anyone point me in the right direction for how to use it?
Hi All,
I am working on an application which needs to preview privileged content in the browser. The preview should work in a way that its NOT possible to download the content. Only reading within the browser is allowed. I have looked at google docs preview but it needs the url of the docs to accessible online. I need to work with content in the intranet
The previewer should not mandate the installation of a pluggin as this would limit the access.
Any hints
The user should input two strings and the script will performe a text search:
$sql = "SELECT * FROM table_one WHERE name='%$str1%' AND MATCH (street, city, pin) AGAINST ('$hrtg'IN BOOLEAN MODE)";
somehow the % does not work, but it alwas did actually. please help?
Hello,
How would I with regular expression search for functions which contains the use of a global variable without running "global $var" first?
The files looks like this:
class TestClass
{
function correctFunc()
{
global $var;
$name = $var->name;
}
function invalidFuncIWantToFind()
{
$age = $var->user->age;
}
}
I want to find the function names of all the invalidFuncIWantToFind. At work this would have really speeded up our work but I didn't get how to do it.
Is there any way in Firebug to search an active variable in Javascript by it's value?
I've looked everywhere and can't find an answer!
Thank you so much in advance!!!!!!
Hello,
I want to search a text_word from raw text using jQuery.
$("#s:regex('text_word')").each(function() {
$(this).appendTo('#s1');
});
raw text here
Thanks
Jean