having difficulties in dynamically adding textbox with datepicker
hi all,
I need help! Right now the problem is, when a button is click, it will run a function call addMoreDate(TableID). By running this function it will help me add new row of textbox. And also able to use datepicker for the textbox as well. However, I am able to add and display the textbox but not the datepicker. I tried to solve but I still can't find any solution. Pls Help! below is my code.
function addMoreDate(TableID)
{
var table = document.getElementById(TableID);
var rowCount = table.rows.length;
var row = table.insertRow(rowCount);
var cell1 = row.insertCell(0);
var element1 = document.createElement("input");
element1.type = "text";
element1.setAttribute('name', rowCount);
element1.setAttribute('id', "datepicker");
cell1.appendChild(element1);
$(function() {
$( "#datepicker" ).datepicker({ showAnim: 'clip',
minDate: '+1d',
maxDate: '+60d',
showOn: 'button',
buttonImage: 'Image/calendar.gif',
buttonImageOnly: true,
dateFormat: 'dd-mm-yy'
});
});
}
<tr>
<td></td>
<td>
<button type="button" onclick="addMoreDate('moredate')">Click to add more date</button>
<table id="moredate">
</table>
</td>
</tr>
View Answers
December 27, 2010 at 11:08 AM
Ads
Related Tutorials/Questions & Answers:
Dynamically adding textbox and labels
Dynamically adding textbox and labels Sir,
In my application I want to insert texbox and labels
dynamically and want to insert database field value in that generated label.
Plz help me,
Thanks in advance
Advertisements
Dynamically hide textbox
Dynamically hide textbox I have a drop down(combo box) with 2 values (reference and file).When refrence is selected from the drop down the components of file(that is displayed when file is selected) should get hidden
dynamically
jtable-adding a row dynamically
jtable-
adding a row dynamically hi..i am doing a project for pharmacy ..
*pblm:*
when i want to enter the details in jtable while running... to add one more row
dynamically as a new row 4th if the details are large.but every
Dynamically Update textbox from database
Dynamically Update
textbox from database I have a database as shown... with two text boxes. if I type something in one
textbox, the corresponding value... in another
textbox. How can I achieve
get date picker values to a textbox
get date picker values to a textbox I am using
DatePicker to select date in a form in asp.net using c#. I need the picked data to get in to a
textbox. Please help me soon
Validation of datepicker
Validation of datepicker I have a
datepicker in my JSp...the seleted dates are put in a text box. I want the alert the user from selecting future dates in the startDate and enddate textbox.So that the user will be alerted wen
jquery datepicker example
jquery
datepicker example � jquery
datepicker example - i wants...').
datepicker( {
changeMonth: true,
changeYear: true...(dateText, inst) {
var month = $("#ui-
datepicker-div .ui-
datepicker
Dyanmically Adding Rows
Dyanmically
Adding Rows Hi sir Am doing project in that i need to add date picker in
dynamically adding rows but the dates are storing in first test...() {
var myCounter = 1;
$(".myDate").
datepicker
adding a dialogue
adding a dialogue Blockquote
Hi can you help with the program below,the program is a loop that prints out a code and a quantity when prompt for the user input.what I need is to modify the code to incorporate a dialogue asking
adding loop
adding loop Hi I have a program that is not compiling when I add a loop can you help me?The program below is compiling without the loop.
> Blockquote mport java.util.*;
import java.text.*;
import java.util.Scanner
vaidate a date from datepicker in javasript
vaidate a date from
datepicker in javasript validation should be the user should be alerted wen a future date is selected..validation can be done in javascript or jsp itself