You are not logged in.

#1 2014-07-16 05:48:49

quontra123
User RankUser RankUser RankUser RankUser RankUser Rank
New member
Registered: 2014-07-12
Posts: 2

Dynamically Add Rows To Existing Table:

Dynamically Add Rows:


I have the table with 100 records
at the first time the page loading i want to display only 10 records and the more link
if the link is clicked display 10 more records

the records are populated from the oracle database

i don't know how to use the oracle contents in javascript or ajax

2014-07-16 05:48:49

Advertisement
Ads By Google

Re: Dynamically Add Rows To Existing Table:



\n
The following user say "Thank You" for this post:Guest

#2 2014-10-18 06:05:22

markreid
User RankUser RankUser RankUser RankUser RankUser Rank
New member
Registered: 2014-10-18
Posts: 1

Re: Dynamically Add Rows To Existing Table:

Recently I have implemented something similar to this for my client's nyc marketing firm. We have to implement 100 records in which I have shown only 10 records and a link asking more. When user click on more link, 10 more rows open and again a more link till count reaches to 100. To implement this logic, I used jquery append function.
("#tableID").find('tbody')
    .append($('<tr>')
        .append($('<td>')

The following user say "Thank You" for this post:Guest

Board footer