TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ms_ Dev
NA
236
92k
pagination of grid using javascript
Apr 28 2017 4:18 AM
Hi,
my hander code is like
htmlToReturn.AppendLine(
"<tr><th><input type='checkbox'></th><th style='text-align:left'>Details</th></tr>"
);
foreach
(var Data
in
Detail.Values)
{
string
script = @
"$('#act_').on('click',function())"
;
htmlToReturn.AppendLine(
"<tr><td><input type='checkbox'id='act_'"
+count +
" onclick="
+script +
" ></td><td>"
+Details+
"</td></tr>"
);
count= count+1;
}
context.Response.Write(htmlToReturn.ToString());
My aspx code is -
<div id="tblGrid">
</div>
here i am showing data from grid as -
i need js script that will paginate the element after 3 elements.
thanks
Reply
Answers (
1
)
referencing the dll
editable multiview example in asp.net