Click here to Skip to main content
15,919,178 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: Is there any way to avoid activex in javascript ? Pin
_Maxxx_3-Nov-13 18:34
professional_Maxxx_3-Nov-13 18:34 
Questionneed help to code in java to read a text file...i am beginner in java..pls help me Pin
creativesmart8825-Oct-13 10:46
creativesmart8825-Oct-13 10:46 
AnswerRe: need help to code in java to read a text file...i am beginner in java..pls help me Pin
Richard MacCutchan25-Oct-13 23:06
mveRichard MacCutchan25-Oct-13 23:06 
AnswerRe: need help to code in java to read a text file...i am beginner in java..pls help me Pin
Richard MacCutchan27-Oct-13 23:52
mveRichard MacCutchan27-Oct-13 23:52 
QuestionRe: need help to code in java to read a text file...i am beginner in java..pls help me Pin
thatraja28-Oct-13 1:08
professionalthatraja28-Oct-13 1:08 
Questionretaining jquery datepicker data between views in ASP:MultiView Pin
Brad7323-Oct-13 6:54
Brad7323-Oct-13 6:54 
QuestionWant pop or new wtndow Pin
abmanish7123-Oct-13 6:35
abmanish7123-Oct-13 6:35 
SuggestionRe: Want pop or new wtndow Pin
ZurdoDev29-Oct-13 9:12
professionalZurdoDev29-Oct-13 9:12 
GeneralRe: Want pop or new wtndow Pin
Sunasara Imdadhusen21-May-14 23:52
professionalSunasara Imdadhusen21-May-14 23:52 
QuestionAngular/Backbone/Knockout Security Question Pin
AnalogNerd22-Oct-13 3:17
AnalogNerd22-Oct-13 3:17 
Questionusing document.forms["MbrForm"].submit(); does not work - help! Pin
Member 860517720-Oct-13 4:53
Member 860517720-Oct-13 4:53 
QuestionDoubt in AJAX response obj Pin
Member 1013786815-Oct-13 0:19
Member 1013786815-Oct-13 0:19 
AnswerRe: Doubt in AJAX response obj Pin
thatraja15-Oct-13 5:20
professionalthatraja15-Oct-13 5:20 
QuestionScript running multiple times Pin
AnalogNerd10-Oct-13 10:49
AnalogNerd10-Oct-13 10:49 
AnswerRe: Script running multiple times Pin
DaveAuld13-Oct-13 21:38
professionalDaveAuld13-Oct-13 21:38 
AnswerRe: Script running multiple times Pin
Abhinav S13-Oct-13 23:48
Abhinav S13-Oct-13 23:48 
QuestionJS/JSON 'Desktop Notifications' Pin
Member 103209557-Oct-13 7:02
Member 103209557-Oct-13 7:02 
Questiondropdown check for same values Pin
01karan6-Oct-13 22:05
01karan6-Oct-13 22:05 
AnswerRe: dropdown check for same values Pin
DaveAuld13-Oct-13 21:46
professionalDaveAuld13-Oct-13 21:46 
AnswerRe: dropdown check for same values Pin
Abhinav S13-Oct-13 23:50
Abhinav S13-Oct-13 23:50 
GeneralRe: dropdown check for same values Pin
Sunasara Imdadhusen21-May-14 23:53
professionalSunasara Imdadhusen21-May-14 23:53 
Questionjavascript Date Issue Pin
wasim khan1-Oct-13 2:20
wasim khan1-Oct-13 2:20 
AnswerRe: javascript Date Issue Pin
Kornfeld Eliyahu Peter6-Oct-13 10:43
professionalKornfeld Eliyahu Peter6-Oct-13 10:43 
GeneralRe: javascript Date Issue Pin
Sunasara Imdadhusen21-May-14 23:54
professionalSunasara Imdadhusen21-May-14 23:54 
QuestionJquery datepicker display for multiple forms Pin
Member 1025344226-Sep-13 22:07
Member 1025344226-Sep-13 22:07 
I have my code structured in such a way that clicking on an 'Edit' button displays a hidden form (written in embedded ruby) within a 'div' html tag and within that form is a text_field_tag whose id is used to tie to a datepicker using Jquery.

Using my current view code and jquery datepicker code in rails : I can click on an edit button and select a date using the text_field_tag for each form. However, when I try to submit that datepicker value it only gets submitted for the first form (for the first 'td element).

Im guessing im doing something wrong with the Jquery code.Can anyone guide me as to how I can submit the datepicker value for the corresponding form (the closest form within 'td' on button click) as opposed to only submitting for the first form(first 'td' element)

Heres my code:

VIEW in RAILS:

<h2>Files</h2>
   <table class="table">
   <tr>
     <th>Filename</th>
     <th>Description</th>
     <th>Download Link</th>
    </tr>
    <% <a href="/Members/files">@files</a>.each do |file| %>
    <% filename = file.split('/').last %>
   <% object = <a href="/Members/bucket">@bucket</a>.objects[file] %>

   <tr>
   <td><%= filename %></td>

   <td>

   <div class="file_description"><%= object.metadata['description']%>

   <button id ="button1" type="button"  class= "btn btn-default
     edit_description"   onclick="Window(this)">Edit</button>

   </div>
    <div id = 'hidden_form' class="file_description_update" >
     <%= form_tag({:action => 'update_file_info'}, multipart: true) do %>
       Update File Description: <%= text_area_tag :description %>
       <%= hidden_field_tag :s3_path, file %>
       <%= hidden_field_tag :prefix, <a href="/Members/prefix">@prefix</a> %>
      <%= text_field_tag 'user_input' %>
       <%= submit_tag 'Submit' %> </td> <br />
     <% end %>
   </div>

   </td>

Code for Jquery in application.js file in Rails:

//= require jquery
     //= require jquery_ujs
     //= require twitter/bootstrap
     //= require bootstrap
     //= require_tree .

     //= require jquery.ui.all
     //= require jquery.ui.datepicker



     $(document).ready(function(){ 
     $( "button.edit_description" ).on( "click", function( event ) { 
     $(this).closest('td').find("div.file_description_update" ).show();
     $(this).closest('td').find("div.file_description_update" 
     ).find('#user_input').datepicker(); 

      });
      });

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.