current location:Home>Download>JS effects>jQuery effects>jQuery pagination dynamic data table plug-in
jQuery pagination dynamic data table plug-in
Classify:JS effects/jQuery effects | Release time: 2018-03-05 | visits: 1804 |
Download: 118 |
Latest Downloads
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
The most powerful brain 3
Odd Dust: Damila
Young Journey to the West 2
24 HoursReading Leaderboard
- 1Passing Data to EJS Templates and Vice-Versa — A Beginners guide
- 2React.js Lazy Loading: EXPLAINED
- 3Logging in Golang
- 4Glam Up My Markup: Solar System
- 5AAVE Maintains Its DeFi Leadership as DTX Exchange Gains Momentum, Targeting Cardano (ADA) by Mid-2025
- 6Longest Subarray With Maximum Bitwise AND
- 7et’s go. And I think that we needed to remember that it’s notoutput: title: COIN's Chase Lawrence and Ryan Winnen Sit Down with Atwood Magazine for a Candid, Decade-Spanning Conversation about Chasing
- 8Building Your Own GitHub Copilot: A Step-by-Step Guide to Code Completion Tools
- 9Try natural language data analysis with Streamlit in Snowflake (SiS)
- 10Try natural language data analysis with Streamlit in Snowflake (SiS)
- 11NBA 2K25 shooting guard build
- 12I made a token count check app using Streamlit in Snowflake (SiS)
- 13Bitcoin Continues to Soar, Capturing the Spotlight with Its Impressive Gains. Yet, Beneath the Buzz, Three Lesser-Known Cryptocurrencies Are Quietly Gaining Traction
- 14The Dark Knight rises again as a custom PC build
- 15SEC Adjusts Its Approach in Binance Case, But ADA and SOL Remain Bearish
Latest Tutorials
-
- Go language practical GraphQL
- 1625 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 3044 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 1522 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2371 2024-03-29
The jQuery paging dynamic data table plug-in is a default table row number display that supports page number jumps.
$('#histroyBox').CJJTable({
'title':["Decoration", "Unloading point", "Transportation goods", "Order date", "Author"], //The title in thethead is required
'body':["taskCode","startAddr","endAddr","varietiesTypeName","createDate","customerName"],//tbody td value field required
'display':[1,1,1,1,1,2],//Hidden fields, 1 displayed, 2 hidden required
'pageNUmber':10,//Number of items displayed on each page Optional
'pageLength':data.length,//optional
'url':data,//data source required
dbTrclick:function(e){//Double-click tr event
alert(e.find('.taskCode').html())
} }
});
//What the background paging looks like
/*$('#histroyBox').CJJTable({
'title':["Decoration", "Unloading point", "Transportation goods", "Order date"], //The title in thethead is required
'body':["contactName","contactMobliePhone","carrierName","taskNum","taskCustomerExpectPrice","taskCustomerBudgetFreight"],//tbody td value field required
'display':[1,1,1,1,2,2],//Hidden fields, 1 is displayed, 2 is hidden required
'pageJson':{
"taskId":528710,
"pageSize":100,//The number of impressions per page in the ajax request parameter Optional
"token":"yJUmunFeG3REqisYAmCfeA"
},
'url':'api/quoted/quotedList',//data source required
dbTrclick:function(that){ //Double-click tr event
alert(that.find('.contactName').html())
}
});*/