Let's now create a container that has the contents that we intend to clone. In this example, we will clone the container with the id print-input, . Assigning a style (print-input-style) to the container which we want to clone is important here, because later we will depend on style name while calculating the number of cloned elements that we currently have.
<divid="print"><br/><divid="print-input-1"class="print-input-style"><labelfor="modal-print-title-1">Title</label> <selectname="modal-print-title-1"id="modal-print-title-1"><optionvalue='Mr'>Mr</option><optionvalue='Miss'>Miss</option><optionvalue='Ms'>Ms</option><optionvalue='Mrs'>Mrs</option><optionvalue='Dr'>Dr</option><optionvalue='Fr'>Fr</option></select> <labelfor="modal-print-name-1">First Name</label> <inputname="modal-print-name-1"id="modal-print-name-1"type="text"size="6"/> <labelfor="modal-print-surname-1">Last Name</label> <inputname="modal-print-surname-1"id="modal-print-surname-1"type="text"size="6"/><br/></div><br/><br/><divid="div-add-customer"><imgid="add-customer"src="../images/add-more.gif"alt="Add New Customer"width="20"height="20"/></div></div>
Next, let's implement the jquery function that clones the print-input container and bind it to the add-customer button.
This function simply counts the current number of clonable elements, clones one of them and assigns an incremented number for each of the element ids. So, as new elements are added, main container ids go one after the other like print-input-1, print-input-2,.... The ids of the contained controls are also incremented accordingly.
There is a business rule to limit the number of added elements to 4. This is quite useful if you want to keep the size of your container consistent or limit the number of elements for some reason.
// how many "duplicatable" input fields we currently have
var num = $('.print-input-style').length;
// the numeric ID of the new input field being addedvar newNum = new Number(num + 1);
var currentContainerId = '#print-input-' + num;
// create the new element via clone(), and manipulate it's ID using newNumvar newElem = $(currentContainerId).clone().attr('id', 'print-input-' + newNum);
// manipulate the name/id values of the input inside the new element
$(currentContainerId).children('label').each(function (i) {
var attrFor = $(this).attr('for');
$(this).attr('for', attrFor.substring(0, attrFor.lastIndexOf("-") + 1) + newNum);
});
$(currentContainerId).children('select').each(function (i) {
var attrId = $(this).attr('id');
var attrName = $(this).attr('name');
$(this).attr('id', attrId.substring(0, attrId.lastIndexOf("-") + 1) + newNum)
.attr('name', attrName.substring(0, attrName.lastIndexOf("-") + 1) + newNum);
});
$(currentContainerId).children('input').each(function (i) {
var attrId = $(this).attr('id');
var attrName = $(this).attr('name');
$(this).attr('id', attrId.substring(0, attrId.lastIndexOf("-") + 1) + newNum)
.attr('name', attrName.substring(0, attrName.lastIndexOf("-") + 1) + newNum);
});
// insert the new element after the last "duplicatable" input field
$(currentContainerId).after(newElem);
// business rule: you can only add 4 names
if (newNum == 4)
$('#add-customer').attr('disabled', 'disabled');
});
});
There, each time you hit the plus button (add-customer), the entire row is duplicated.
Here is an example on how to implement a modal popup within HTML using the dialog feature of jQuery ui plugin giving hints about auto open option and a simple customization to achieve a nice dialog. In the header, including jQuery library and jquery-ui library will be sufficient as preliminary. jQuery UI library can be downloaded from the following link, where there other good examples.
Now comes the actual implementation of ui-dialog in jQuery. If the dialog is intended to be reused, the best way is to disable auto-open option and bind a button or event to open the dialog.There are currently two buttons in our dialog, but you can add as many buttons and regarding functionalities as you wish.
See the implementation of custom header class, first removing the default and adding the class we initially defined in the HTML header.
var $dialog2 = $('#modalEmail')
.dialog({
autoOpen: false,
title: 'Email Details',
modal: true,
resizable: false,
width: 380,
height: 300,
show: 'drop',
buttons: [
{
text: 'Email',
click: function () {
var parameters = getPrintParams('email');
emailForm(parameters);
alert("Quote information PDF emailed succesfully.");
$(this).dialog("close");
}
},
{
text: 'Cancel',
click: function () { $(this).dialog("close"); }
}
],
open: function (event, ui) {
$(this).parents(".ui-dialog:first").find(".ui-widget-header")
.removeClass("ui-widget-header").addClass("ui-widget-header-custom");
$('#modalEmail').css('overflow', 'hidden');
Working on repayment frequency enumeration and its annual occurence, I came up with the
idea of implementing field attributes. Then found a good way to obtain the value of annual occurences which is embedded to the attribute. I implemented an enumeration extension to achieve this.
This is a neat and tidy way to enrich enumerations with custom attributes and get the values of these attributes by an enumeration extension.
The enumeration class:
namespace MyApplication.Domain.Enumerations
{
publicenumRepaymentFrequency
{
[AnnualOccurence(12)]
[DaysImplied(30)]
Monthly,
[AnnualOccurence(52)]
[DaysImplied(7)]
Weekly,
....
.... }
The custom attribute class for AnnualOccurence (it will be pretty much the same for DaysImplied):
There are many javascript / jquery based client side web graphic tools that can be used for various purposes. So many that it is hard to decide which one to pick.
I have looked into the most popular and useful ones and assessed them in detail, based on their features and other factors like compatibility, learning curve.
Remember, the best tool changes depends on your purpose, type & size of chart you want to use and whether you are after more advanced features like dynamic rendering and interactivity.