Click here to Skip to main content
15,893,668 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
i have one repeater control in my aspx page and it will creat a table. now my question is that can i send this table to jquery and disply throug the jquery ?


The static jquery is like

XML
$(document).ready(function () {
$('.infotip').tooltipster({
            content: $('<table><tr><td>Testing</td></tr><tr><td>no1</td></tr></table>'),
            position: 'left',
            theme: 'tooltipster-shadow'
        });




but i want to pass a table that are created in my repeater control in c#
Posted
Updated 11-Nov-14 21:28pm
v2

1 solution

Yes, but be aware of the size of your data you send over the net! It may be a better idea to use some grid-control and bind it to the data you want to display...In that case you have to send only data over the net!
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900