why jtable in web application
hi,
Iam litttle confused because
"
Our project is Asp.net web applcation.In this project avoid asp.net controls due to slow(it is server controls) process.Company changed all asp.net controls to html controls ,this is good method?
here jtable using for data visualise ..this is more confused,,i have good datagridview
"
Answers (3)
0
yes good to use html controls instead of asp.net.
but it difficult to handle them in server side bcoz there is no serverside events from html controls . you have to write the code .
Accepted 0
thanks for you reply...please describe about my first question .. that is asp.net controls to html controls is it good method?
0
jtable is a javascript html table. which will not rendered in runtime when page is loading so it faster than the gridview control in asp.net as it has to renderend to html when it loaded everytime.