search
HomeWeb Front-endJS TutorialDynamic table plug-in based on jQuery_jquery

Here we need to control user input verification, table addition and deletion, statistical aggregation of user input data, and corresponding calculation columns such as the total price of the product = unit price of the product * quantity of the product, and at the same time, when the user submits I also need to get the submission to the background server for processing and then store it in our database. This plug-in simply handles these tedious things.
Plug-in attribute description:
1: rowTemplate: This is the template for inserting columns. In the template, our serial number and row number indicate the class of rownum. Those in the template that require unique numbers, such as the name attribute of our radiobutton, require a unique name group in each td cell. Another example, such as id, which requires a unique attribute, requires a placeholder of {0}. At the same time, in our table processing, some behavioral statistics rows or fixed rows of data will not be deleted by users, so fixed=true is required. And for each input or label control, those that need to return the extracted value need to be marked with property="propertyname".
2: addTrigger: This is a jQuery selector that triggers adding rows.
3: addPosition: It is the insertion position of the inserted row. The default is at the end of last. However, according to our needs, there may be fixed rows such as summary rows at the end, so there are three ways to add: first, and numerical value. A positive number means starting from the beginning of the line, a negative number means starting from the end.
4: removeTrigger: Delete mark. It is an array and can have multiple delete buttons. At the same time, each object in the array is also a jQuery selector with a selector trigger button. The handler trigger processing method, the value is first Delete the first row, the last column, and the current column. All deletions delete columns that are not fixed=true.
5: At the same time, you can replace all td row number columns with rownum through $(selector).updateSortNum();. In fact, I am considering removing the td restriction here.
6: $(rowselector).getRowObj(): Get the javascript row object with property as the attribute.
7:$(tableselector).getTableObj(): Get the javascript array object of the table with property as the attribute, which is a collection (array) of row objects.
8: getSource (saveHiddentField): Get the attribute set of the xml organization. If the saveHiddentField selector is passed in, this will automatically be assigned to saveHiddentField.
Here are item: , root: item is the default item of the node of each row of data xml, and root is the default root of the xml root node. After obtaining the xml, we can parse the xml directly in the background, or use DataSet.ReadXml() to directly convert it into a DataTable.
8: $(inputselector).getValue(): Get the value of the control: supports the values ​​of text, label, checkbox, radio, label, td, textarea. The radio value is the selected value, and the checkbox value is the "," separated string of all selected row values.
9: Calculates: Calculation summary, is an array object, with selector: Summary display control The actual expenditure amount of the financial verification cannot be higher than the approval amount, and the approval amount cannot be higher than the actual budget amount, selector, column: The summarized attributes correspond to the property attributes we attached above. func: It is the summary processing method: it supports aggregate functions: sum, max, min, count, avg, and user-defined functions (must have return values). The input parameter is an Array of property values.
10: CalculatesColumn: Calculated column, which is also a js array with a trigger array, indicating the property property that triggers the calculation, the property of the column calculated column, and the func custom processing function. (I wanted to use expressions and use eval to handle automatic calculations here. However, I felt that the changes required were too many and difficult to control, so it is better to leave it to the user to implement a function as a proxy delegate and as a callback function); this can be used to process , the total price of the product = the unit price of the product * the quantity of the product. The actual expenditure of the verification finance mentioned above cannot be higher than the approval amount, and the approval amount cannot be higher than the actual budget amount. At the same time, it can also be used as a verification trigger.
There is no data type verification in this plug-in, because the verification needs change too much, and we have many excellent Jquer verification plug-ins at the first level, which will be very practical when used together. At the same time, you can also control it yourself: For example, my two simple verifications:

Copy code The code is as follows:

$(".datetime").live("focus", function() {
WdatePicker({ readOnly: true, dateFmt: 'yyyy year MM month dd day' })//MyDate97
} );
$(".number").live("keyup", function() {
this.value = this.value.replace(/[^-d.]/g, '');
}).live("keydown", function(e) {
if (e.which == 189) {
$(this).val(-1 * parseFloat($(this). val())).trigger("change");
e.stopPropagation();
e.preventDefault();
}
});

There is too much nonsense above, so let’s just demo it below:
Oh, I forgot to remind you that in this plug-in, the table is required to follow the standards w3c, thead, and tbody. In thead, we can add header settings ourselves, no matter how complex the multi-header structure is.
Copy code The code is as follows:


































序号

姓名

年龄

Sex

联系信息

日期

test checkbox


增加增加
  

删除删除


Email

电话










未命名 

测试代码比较乱,没有考虑实际性质,比如标题日期,作为了计算列,年龄作为了统计列,在后台的input汇总,敬请原谅。有机会在好好的写几个Demo。
有什么bug,敬请大家提出,我会尽快修复。同时也谢谢各位的不舍赐教。
作者:破 浪

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 Mobile Cheat Sheets for Mobile Development10 Mobile Cheat Sheets for Mobile DevelopmentMar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source ViewerImprove Your jQuery Knowledge with the Source ViewerMar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 jQuery Fun and Games Plugins10 jQuery Fun and Games PluginsMar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header BackgroundjQuery Parallax Tutorial - Animated Header BackgroundMar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software