Displaying 20 results from an estimated 5000 matches similar to: "autocomplete question"
2012 Jun 25
2
setdiff datframes
hi,
I have 2 files example 1 and example 2 and would like to know what is in
example2 and not in example1 (attached)
V1 contain data which could be in duplicated which I am using as identifiers
I used setdiff(example2$V1,example1$V1) to find the identifiers which
are specific to example2:
[1] "rs2276598" "rs17253672"
I am looking for a way to get an output with all
2005 Sep 07
3
Autocomplete Error w/Version 1.5_pre4
I recently updated to version 1.5_pre4 to use the excellent in-place
editor, however, I''m now seeing a bug with AutoCompletion.
When text is entered in the text field for auto completion, the
auto_complete div is not updated (but the server does receive the
request and return a response). Upon removing focus from the text
field, 2 instances of the following error can be seen in both
2006 Mar 13
2
Autocomplete broken after update to Rails 1.0
When I upgraded to 1.0, I broke autocomplete on a field. I''ve done
everything that I can think of to fix the problem, but nothing has
worked. I''m able to recreate a simple autocomplete from examples on the
various tutorials, but my original code just will not work.
<input id="incident_first_party_name" name="incident[first_party_name]"
2010 Jan 07
1
text field with autocomplete
Hey everybody,
I am using text field with autocomplete in my posts new action. That
works great.
Response from autocompleter in firebug:
POST http://localhost:3001/posts/auto_complete_for_tag_name 200 OK 68ms
but if I use the same in edit action it fails and I got this error.
POST http://localhost:3001/posts/781/auto_complete_for_tag_name 404 Not
Found 81ms
*** POSTS controller: ***
def
2006 Jan 07
3
script.aculo.us: autocomplete does not work
I copied an exact copy of "http://demo.script.aculo.us/ajax/autocompleter"
to my harddisc inclusive all .js and .css.
Then I changed "new Ajax.Autocompleter(''contact_name'',
''contact_name_auto_complete'', ''/ajax/auto_complete_for_contact_name'', {})"
to
"new Ajax.Autocompleter(''contact_name'',
2006 Feb 08
29
Autocomplete and Firefox
Having problems with the autocomplete on my linux box and firefox.
When I use form tags it breaks, without form tags everything works fine.
Exact copy of the example provided, but I added form tags.. The initial
search and select works but then the box sort of "locks up" and I can''t
change it at all, If I do try to type something nothing changes but a
second later the whole
2005 Sep 22
6
Autocomplete - setting a second value?
I''m using the autocomplete function, and need a way to grab a second
value from the ajax request... an example would probably speak better:
This is my HTML:
<input name="CustomerName" id="CustomerName" type="text" />
<div id="CustomerList"></div>
<input name="CustomerID" id="CustomerID"
2006 Feb 11
1
autocomplete inside a table?
Has anyone tried putting an autocomplete field inside a table?
I can do this successfully within FireFox, but in IE, it just doesn''t
render the "drop-down" autocomplete div. Unfortunately, I don''t
understand enough about why IE doesn''t work to know how to fix it.
My autocomplete div CSS is:
div.auto_complete {
position: fixed;
border: 1px solid #eee;
2006 Apr 28
2
Active Record save doesn''t save! (more detail - is this a bug?)
I got it to work by changing
scheduled_end_date= nil
to
self.scheduled_end_date= nil.
I believe these statements should be equivilent.
I don''t know Ruby/Rails well enough to know when, if or why that should
matter. Can someone educate me please? I want to believe this framework is
ready for production work, but silently dropping data is a very big
problem. I expect that I''ve
2011 Dec 21
2
6.2 release: a thank you
Gents
I would like to express my appreciation for the unbelievably quick
release of Centos 6.2. Thanks a million! You managed to release 6.2 some
10 days after 6.1. Johnny, you are not that ugly after all :-).
Louis
2015 Jul 01
4
Dovecot auth username mapping
Thank you for the response Axel. I will look into that.
I did attempt to switch the PAM/Kerberos authentication to Dovecot LDAP authentication, but now performance is unbelievably slow. For example, with PAM/Kerberos, a user can log into webmail and have all of their emails/folders showing almost immediately. When using Dovecot LDAP, it takes literally 8-10 seconds to see the same thing.
I
2005 Aug 02
4
Fwd: Re: disable ''tab'' key wish for incremental autocomplete of textareas
Hi Tim,
Thanks for the commentary, you bring a good point to
light: I think the asynchronous nature of AJAX needs
to be looked at more carefully in our UI assumptions.
The key difference between AJAX auto-complete and any
other browser/OS autocomplete is that we can''t
guarantee having the results ready by the time the
user wants to hit TAB. In the old days we used to
have everything
2004 Aug 06
2
liveice sending horrible static noise?
well, I got it working with the liveice-xmms plugin... had to sift through the
source and remove the -x argument passed to lame...
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To unsubscribe from this list, send a message to 'icecast-request@xiph.org'
containing only the word 'unsubscribe' in the body. No subject
2006 Mar 23
3
drag and drop sorting recipe
The new pragmatic Rails Cookbook has a drag and drop sorting recipe. Does
anyone know if this works with 1.0?
I''ve followed the recipe (i think), and I can drag but when I drop
everything goes back the way it was. It seems that the sort logic doesn''t
get invoked.
I put this code in my view:
<%= sortable_element ''task-list'' ,
:url => {
2004 Dec 29
2
So what if I can't dial out ... or in ... Asterisk just blows my mind!
I subscribed to this list for about two months before I began posting, so I've
got a buttload of email to sift through ... I'm doing this BEFORE I flood the
list with my inane questions ...
But here goes:
I read a reply from one guy to another about recording. The message included
this context from extensions.conf:
[recordings]
exten => 500,1,Festival('Please record your
2017 Apr 20
2
Log Level and Failed Authentication Attempts
Hello Samba Friends,
For those of you who have had to sift through Samba logs for clues on how to determine what caused an account to lock after repeated failed logon attempts, what "log level" settings have you found to be most helpful?
Thanks,
Matthew
©2017 KNOCK, inc. All rights reserved. KNOCK is a registered trademark of KNOCK, inc. This message and any attachments contain
2006 Apr 28
7
Active Record save doesn''t save! (or throw an exception)
PLEASE help me - this is making me insane.
Can anyone suggest any reasons for this behavior? It occured previously,
then went away and is now back.
In Task.rb (where task is an active record subclass)
def clear_schedule
puts "clearing schedule for task"
scheduled_end_date= nil #reset the
scheduled end date
save
halt.
2006 Mar 13
3
Autocompleter that auto scrolls through results..
Hi All
Before I investigate further, has anyone implemented an Autocompleter that
will auto scroll down / up the results div as the user moves down through
the list (using arrow keys) ?
Any pointers / thoughts appreciated.
Best
Matt
***********************************************************************************
The Royal Bank of Scotland plc. Registered in Scotland No 90312. Registered
2010 Jul 04
4
OT: Problems updating OS to deal with fading R support for Ubuntu Hardy Heron...
Evening folks:
Not sure where this fits into the picture so bear with me for a few
moments while I think out loud to lay out the particulars of my problem.
-would love to be employed using R for a living but so far I have just
worked with it on my home machine to develop a basic level of skill with
it.
-I run Ubuntu linux 8.04 LTS on a machine with a 2.5GHz Celeron
processor and 1.2GB of memory.
2006 Apr 01
5
What IDE for Rails on OSX?
Hi,
I''m using TextMate for rails development on OSX, but have reached a point
where I need to run in a debugger and be able to step through the code as it
executes. I have previously used the Eclipse Ruby plug in and another IDE
for ruby development on windows, but never figured out how to run a Rails
app in the debugger.
How are other textmate users debugging and what else is there on