Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jman78
  • Content: Threads
  • Order by date
  1. jman78

    Model Associations

    I'm trying to create a simple POS (Point of Sale) system. I have associations set up in the order models to the items and seats (tables) class Order < ActiveRecord::Base has_many :order_splits has_many :order_split_items, :through => :order_splits belongs_to :seat, :foreign_key =>...
  2. jman78

    Script works in all browsers but IE

    On the webpage I have a button (image link) that runs a javascript command to add a row to my table form. <a onClick="addRow(<%= @num_variants %>); return false;"><%= image_tag 'pages/classifieds/add-additional-row.png' %></a> Here is the applicant javascript: function addRow(fields) {...
  3. jman78

    Google Maps (v2) not displaying

    Here's the code I'm using - I don't see what's wrong - If I take out the event listener, I can get markers to show up on the screen, but the map doesn't show. Anyone see something I missed? Thanks! Jason <head> ... <script type="text/javascript"...
  4. jman78

    jquery and facebox plugin not working

    I wanted to set up this facebox plugin for a friend of mine - but it doesn't seem to work... Can someone check out the page at http://www.christineshinn.com/graphic_design/miscgallery.html and tell me if you can see anything I did wrong? I have the top row set to use the facebox plugin but...
  5. jman78

    link combo boxes

    I have 3 dropdown combo boxes. They all have the same options. I just want to update the second and third ones to remove the options that are already chosen. I've tried working out a solution I found on google, but that is made for seperate datasets and I couldn't get it to work. Any help...
  6. jman78

    redraw div after ajax update

    I need to update the div height after an ajax update. Currently in IE 7, the div retains its current height until the browser window is resized. Is there a workaround available to fix this behavior? Thanks! Jason
  7. jman78

    IE 7 redraw div?

    I set up an AJAX call in ruby. This works in all browsers except IE 7 (amusingly enough, IE 5.5 and 6 render it well) Is there a way to redraw the div tag that the ajax updates to include the size? Here are a couple of screenshots to illustrate what it is doing. Jason Before AJAX call After...
  8. jman78

    css table-less table in IE7

    I have this code here, that creates a table using a div as a row and spans as table cells (using the appropriate 'display: xxxxxxx') This works excellently in safari, firefox, opera and IE 6, but IE 7 does not render the span widths or heights. I spent the entire day yesterday working on...
  9. jman78

    Ruby and Ajax - dropdown menu to call action

    Hi - I'm trying to implement a dropdown box with values of the previous bunch of years. That is completed. I want this dropdown to update a partial (list of db records). I've tried several times, and the closest I can get is that it reloads the entire page into the div I'm targeting. I've...

Part and Inventory Search

Back
Top