Displaying 8 results from an estimated 8 matches for "timecards".
Did you mean:
  timecard
  
2006 Jul 27
1
form_remote_tag
How can I get a name/id for a form using the remote form tag?
<%= form_remote_tag :url => { :action => :add_to_cart, :id => timecard } 
%>
gives me:
<form action="/timecard/add_to_cart/4"
       method="post"
       onsubmit="new Ajax.Request(''/timecard/add_to_cart/4'',
          {asynchronous:true, evalScripts:true,
         
2005 Jun 10
1
Unusual permissions problem
...f users to have read access.  Simple,
right?  First, I set up the directory structure per Linux:
(According to the samba guide, it's more efficient to use sticky bits on the directory instead of using the force user clause in the
smb.conf file.)
drwsr-s---   2 tcuser tcgroup 8.0K Jun 10 08:06 timecards
Testing:
	Log in as a user who is a member of the tcgroup, can read all files in the tree:  Success
	Log in as tcuser, can read, write, and delete all files in the tree:  Success
So I'm feeling pretty good about the Linux permissions.  Now time to create the share:
[timecards]
   comment =...
2001 Feb 08
1
Massive confusion
I'm probably thinking way too hard on this... but I've already got a
headache.
I've setting up a VPN for a client between two sites. Someone had
recommended vtun, so I gave it a try. I was VERY put off by the lack of
decent documentation. I _think_ I got a VPN set up between the two sites,
but it wasn't working right and I gave up because the documentation sucked.
So, then I
2006 Jan 23
0
Indexed Text Input -> Ajax with Helpers
Hello again.
I can get my input forms doing what I want using the '':index =>
object_counter'' syntax which is very nice.
However, the Ajax text_input_with_auto_complete seem not to be able to
account for the :index.
I can see in the source why this is the case.  I have a workaround
that is an ugly kludge.  I am wondering if there is any less-ugly
kludge that I can try.
2006 Jan 30
1
auto_complete_with_index_for
I have a crude hack to allow auto_complete to work with indexed text
fields.  I needed it for a timecard entry form with an arbtirary
number of records which can be added/changed/delete willy-nilly by
users.  One of the fields is a perfect candidate for autocomplete
since it references a database object with a large number of choices
and long descriptions.  Using a select list is extremely ugly in
2006 Jul 13
0
Loading different fixtures?
...e patch from ticket 1911 is against 0.13.1; I''d be 
surprised if it worked on 1.1...
I''ve also tried the following:
  class RolldownTest < Test::Unit::TestCase
    self.fixture_path = 
"#{File.dirname(__FILE__)}/../fixtures/rolldown/"
    fixtures  :authorizations, :timecards #, etc
    #...
  end
This works when I just run the test as a standalone, but it utterly 
hoses all other tests when I run rake.
Any other suggestions?
Thanks,
-Sam
-- 
Posted via http://www.ruby-forum.com/.
2007 Sep 09
0
Samba PANIC
Hi all,
Hope somebody can help. I am obviously not a samba guru...
I've installed a new server and tried to migrate my existing configuration and users..
I'm using FC6 and Version 3.0.24-7.fc6.
Unfortunately when I performed the install on the new server, I didn't make sure my user
UID and GID's where the same as the previous server which resulted in all sorts of odd
behaviour
2006 Jan 23
16
Adding form fields (extending a form) on the fly
Hello,
I just can''t seem to find a way to extend a form dynamically in ROR.
Say I am writing a recipe website. There is one form to enter the 
recipe. There is room for N number of ingredients (let''s say a text 
field for each ingredient name and selection list for the amount). What 
if the user wants to add more than N ingredients as he types them in? 
how do I do this without