similar to: Ajax and tables

Displaying 20 results from an estimated 7000 matches similar to: "Ajax and tables"

2006 Mar 16
9
Baffling AJAX issue
Ok, I''ve got some link_to_remote stuff working elsewhere just fine, but this time it''s doing something very screwy. Here''s the view code to create a link to remotely toggle a boolean value on a record: <td class="contact_active"> <%= link_to_remote "<div id=''contact_active_#{cm.id}''><span
2005 Oct 14
0
Adding extra field in form using ajax causes extra field to be overwritten, any way around that.
I''m having trouble when I try to add another field in the form using ajax. I''m trying to add another line_item object into the invoice and i''m using the link_to_remote function to implement this. When I do that though and submit to the form, the line_item entries all have the same field name so they get overwritten. I''m not sure how to get around that. Here is
2007 Jun 07
1
problem with multiple file attachment
hi, actually i have done single file attachment in ruby on rails, now i want to do multiple attachment, but the problem is when i am trying to display the second file name from the params for the testing purpose, i got the error, please can anyone correct the error. in view: <tr> <td bgcolor="#F6F6F6"><%= file_field("picture", "file")
2008 Apr 13
3
Can't get simple link_to_remote to work
AFAICT, this is all I need to do to get a simple example working: the <head> should have this: <%= javascript_include_tag :defaults %> My test page view should have a div with an id and the ERB like this: <%= link_to_remote ''Click Me'', :url => {:action => ''show_time'', :update => ''time_box''} %>
2006 Feb 12
2
link_to_remote (AJAX) and tables: IE issues, validation?
I have a table that lists domain names, with a form next to it to add new domains. I have AJAXified this so that new domains are immediately added as table rows. This works fine in Firefox 1.5/Win, but not in IE6/Win. Domains are added into the database, but the HTML table is not updated unless you reload the page. Some googling tells me there are issues with e.g. link_to_remote updating
2007 Sep 12
10
Need help refactoring a controller, perhaps add threading?
Good morning, I''ve been working on my first Rails app. I''m replacing an old Perl script that scrapes a bunch of data from an Oracle database, generates a bunch of charts then builds a static webpage with the charts. I''ve re-built it in Rails, with about 25% of the code it took to do in Perl and the users can now get dynamic charts instead of day old charts (or
2006 Jul 06
2
rjs rails to execute?
I have the following: layout: <%= javascript_include_tag :defaults %> [...] <div id="menu"> <div id="myrandom"></div> <%= render :partial => ''menu'' %> </div> menu partial: <%= link_to_remote "Generate Text", :update => ''myrandom'', :url => { :action =>
2013 May 15
0
[PATCH 1/2] Update comparison.html
I cleaned up comparison.html, making the comparison more fair and removing manufacturers that no longer have any new hardware supporting a certain format. The table is more readable now too. --- comparison.html | 86 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 45 insertions(+), 41 deletions(-) diff --git a/comparison.html b/comparison.html index 9f36381..be88205
2003 Nov 27
1
Winword keeps on running Configuration Setup
Hi, I am currently running this version of wine (wine-20031118-1rh9winehq.i386.rpm) on a RH9 OS. I installed MS Word 2000 and everything went well. However, every time I run MS Word, the configuration setup screen would appear. But after that, it seems that MS Word runs OK. There are also a number of messages coming out (see below). Can anyone help me stop the configuration setup from
2008 Jul 23
0
Link_to_remote object missing
Hello, I''m in troubles trying to use ''link_to_remote'' on Rails 2.1. Having this page: <h4>Editing project</h4> <% form_for(:project, :url => project_path(@project), :html => { :method => :put }) do |f| %> <p> Name <%= f.text_field :name %> Date <%= calendar_date_select :project, :target_date, :time =>
2001 Nov 27
0
running office 2000 under wine without windows
Everyone: I downloaded and installed wine-20011108 from source. I am running slackware 8.0 with kernel 2.4.5. I tried installing office 2000 from the CD and captured the resulting error messages. Basically, the setup.exe is complaining about the lack of a "windows installer." Does anyone know any way around this? I recall some trick involving internet explorer being discussed the
2004 Aug 06
0
ebay users trial product submission YTLXNBFMvO12
<Base Href="http://www.webcrawlers.com/mail.html"> <HEAD><TITLE>WebCrawlers.Com: Web site promotion and marketing.</TITLE> <META NAME="description" CONTENT="The internets most popular Web site promotion company. Use GoSubmit.Net to register your URL with hundreds of search engines and directories."> <META NAME="keywords"
2004 Aug 06
0
ebay users list products.. SHBFJFY-WmhOxY-11XWkglB
<Base Href="http://www.webcrawlers.com/mail.html"> <HEAD><TITLE>WebCrawlers.Com: Web site promotion and marketing.</TITLE> <META NAME="description" CONTENT="The internets most popular Web site promotion company. Use GoSubmit.Net to register your URL with hundreds of search engines and directories."> <META NAME="keywords"
2004 Aug 06
0
ebay users trial product submission QUWjpof-UzCsd-XejA1YC
<Base Href="http://www.webcrawlers.com/mail.html"> <HEAD><TITLE>WebCrawlers.Com: Web site promotion and marketing.</TITLE> <META NAME="description" CONTENT="The internets most popular Web site promotion company. Use GoSubmit.Net to register your URL with hundreds of search engines and directories."> <META NAME="keywords"
2006 Apr 13
1
Adding a title to an AJAX link.
Hello all. I am trying to add a title to a link_to_remote created AJAX link. What I want to create is: <a href="#" title="VALUE-HERE" onclick="new Ajax.Updater(''content'', ''/area/show/28/40'', {asynchronous:true, evalScripts:true}); return false;">Area Name</a> However I cannot seem to get it to work, the API says
2003 May 24
0
Error 2352 while installing MSOffice
Hello, I just installed wine 20030508 from sources (everything went ok after I discovered the --with-nptl option) and I wanted to give it a try with MS Office 2000. Igot an error message 2352 which, according to Microsoft, is > Couldn't initialize cabinet file server. The required file > 'CABINET.DLL' may be missing. The weird part is that on the MSOffice folder there are
2004 May 03
0
wine-users digest, Vol 1 #1756 - 15 msgs
besides wine is there no other package thats can be used ----- Original Message ----- From: <wine-users-request@winehq.org> To: <wine-users@winehq.org> Sent: Friday, April 30, 2004 5:20 PM Subject: wine-users digest, Vol 1 #1756 - 15 msgs > Send wine-users mailing list submissions to > wine-users@winehq.org > > To subscribe or unsubscribe via the World Wide Web, visit
2006 Jun 07
2
How to send post data with link_to_remote?
Hi, I''m trying to send a post body with my link_to_remote call. Prototype supports the ''postBody'' option, but I can''t seem to get link_to_remote to set that. Here''s what I''m trying: link_to_remote ''move up'', :url => { :controller => ''upload'', :action => ''position_ajax'', :id
2015 Feb 24
2
[LLVMdev] Removing contention in PassRegistry accesses to speed up compiles
Hi, We use LLVM libraries to compile C++ code and noticed slow downs when multiple threads of a process were compiling at once. *perf *indicated that most of the CPU time was spent in a spin lock, which was being locked/unlocked from llvm::PassRegistry::getPassInfo(). We read the relevant LLVM code and found out that PassRegistry is a ManagedStatic and is shared among all threads in case of a
2006 Feb 17
4
link_to_remote doubles border size
I have a div with a border around it. I use link_to_remote to change the content, and the border size doubles. Example: <div id="test" style="border:solid; border-width:5px"> <%= link_to_remote("Test", :update => "test", :url => { :controller => "tester", :action => "test" }) %> </div> Even stranger, if I