UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

258 lines 14.9 kB
/// <reference path="../../../jqwidgets-ts/jqwidgets.d.ts" /> function createDataTableEditing(selector) { var orderdetailsurl = "../../sampledata/orderdetails.xml"; var ordersSource = { dataFields: [ { name: 'OrderID', type: 'int' }, { name: 'Freight', type: 'float' }, { name: 'ShipName', type: 'string' }, { name: 'ShipAddress', type: 'string' }, { name: 'ShipCity', type: 'string' }, { name: 'ShipCountry', type: 'string' }, { name: 'ShippedDate', type: 'date' } ], root: "Orders", record: "Order", dataType: "xml", id: 'OrderID', url: orderdetailsurl, addRow: function (rowID, rowData, position, commit) { // synchronize with the server - send insert command // call commit with parameter true if the synchronization with the server is successful // and with parameter false if the synchronization failed. // you can pass additional argument to the commit callback which represents the new ID if it is generated from a DB. commit(true); }, updateRow: function (rowID, rowData, commit) { // synchronize with the server - send update command // call commit with parameter true if the synchronization with the server is successful // and with parameter false if the synchronization failed. commit(true); }, deleteRow: function (rowID, commit) { // synchronize with the server - send delete command // call commit with parameter true if the synchronization with the server is successful // and with parameter false if the synchronization failed. commit(true); } }; var dataAdapter = new $.jqx.dataAdapter(ordersSource, { loadComplete: function () { // data is loaded. } }); var theme = $.jqx.theme; var flag = false; // initialization options - validated in typescript // jqwidgets.DataTableOptions has generated TS definition var options = { width: 850, source: dataAdapter, pageable: true, editable: true, showToolbar: true, altRows: true, ready: function () { // called when the DataTable is loaded. }, pagerButtonsCount: 8, toolbarHeight: 35, renderToolbar: function (toolBar) { if (flag === false) { flag = true; } else { return; } var toTheme = function (className) { if (theme == "") return className; return className + " " + className + "-" + theme; }; // appends buttons to the status bar. var container = document.createElement("div"); var fragment = document.createDocumentFragment(); container.style.overflow = 'hidden'; container.style.position = 'relative'; container.style.height = '100%'; container.style.width = '100%'; function createButtons(name, cssClass) { this[name] = document.createElement('div'); this[name].style.cssFloat = 'left'; this[name].style.padding = '3px'; this[name].style.margin = '2px'; var iconDiv = document.createElement('div'); iconDiv.style.margin = '4px'; iconDiv.style.width = '16px'; iconDiv.style.height = '16px'; iconDiv.className = cssClass; this[name].appendChild(iconDiv); return this[name]; } var buttons = [ createButtons('addButton', toTheme('jqx-icon-plus')), createButtons('editButton', toTheme('jqx-icon-edit')), createButtons('deleteButton', toTheme('jqx-icon-delete')), createButtons('cancelButton', toTheme('jqx-icon-cancel')), createButtons('updateButton', toTheme('jqx-icon-save')) ]; for (var i = 0; i < buttons.length; i++) { fragment.appendChild(buttons[i]); } container.appendChild(fragment); document.getElementById('toolbartable').appendChild(container); var addButtonOptions = { height: 25, width: 25 }; var otherButtonsOptions = { disabled: true, height: 25, width: 25 }; var myAddButton = jqwidgets.createInstance(buttons[0], 'jqxButton', addButtonOptions); var myEditButton = jqwidgets.createInstance(buttons[1], 'jqxButton', otherButtonsOptions); var myDeleteButton = jqwidgets.createInstance(buttons[2], 'jqxButton', otherButtonsOptions); var myCancelButton = jqwidgets.createInstance(buttons[3], 'jqxButton', otherButtonsOptions); var myUpdateButton = jqwidgets.createInstance(buttons[4], 'jqxButton', otherButtonsOptions); var addTooltopOptions = { position: 'bottom', content: "Add" }; var editTooltopOptions = { position: 'bottom', content: "Edit" }; var deleteTooltopOptions = { position: 'bottom', content: "Delete" }; var updateTooltopOptions = { position: 'bottom', content: "Save Changes" }; var cancelTooltopOptions = { position: 'bottom', content: "Cancel" }; var myAddToolTip = jqwidgets.createInstance(buttons[0], 'jqxTooltip', addTooltopOptions); var myEditToolTip = jqwidgets.createInstance(buttons[1], 'jqxTooltip', editTooltopOptions); var myDeleteToolTip = jqwidgets.createInstance(buttons[2], 'jqxTooltip', deleteTooltopOptions); var myCancelToolTip = jqwidgets.createInstance(buttons[3], 'jqxTooltip', cancelTooltopOptions); var myUpdateToolTip = jqwidgets.createInstance(buttons[4], 'jqxTooltip', updateTooltopOptions); var updateButtons = function (action) { switch (action) { case "Select": myAddButton.setOptions({ disabled: false }); myDeleteButton.setOptions({ disabled: false }); myEditButton.setOptions({ disabled: false }); myCancelButton.setOptions({ disabled: true }); myUpdateButton.setOptions({ disabled: true }); break; case "Unselect": myAddButton.setOptions({ disabled: false }); myDeleteButton.setOptions({ disabled: true }); myEditButton.setOptions({ disabled: true }); myCancelButton.setOptions({ disabled: true }); myUpdateButton.setOptions({ disabled: true }); break; case "Edit": myAddButton.setOptions({ disabled: true }); myDeleteButton.setOptions({ disabled: true }); myEditButton.setOptions({ disabled: true }); myCancelButton.setOptions({ disabled: false }); myUpdateButton.setOptions({ disabled: false }); break; case "End Edit": myAddButton.setOptions({ disabled: false }); myDeleteButton.setOptions({ disabled: false }); myEditButton.setOptions({ disabled: false }); myCancelButton.setOptions({ disabled: true }); myUpdateButton.setOptions({ disabled: true }); break; } }; var rowIndex = null; myDataTable.addEventHandler('rowSelect', function (event) { var args = event.args; rowIndex = args.index; updateButtons('Select'); }); myDataTable.addEventHandler('rowUnselect', function (event) { updateButtons('Unselect'); }); myDataTable.addEventHandler('rowEndEdit', function (event) { updateButtons('End Edit'); }); myDataTable.addEventHandler('rowBeginEdit', function (event) { updateButtons('Edit'); }); myAddButton.addEventHandler('click', function (event) { if (!myAddButton.disabled) { // add new empty row. myDataTable.addRow(null, {}, 'first'); // select the first row and clear the selection. myDataTable.clearSelection; myDataTable.selectRow(0); // edit the new row. myDataTable.beginRowEdit(0); updateButtons('add'); } }); myCancelButton.addEventHandler('click', function (event) { if (!myCancelButton.disabled) { // cancel changes. myDataTable.endRowEdit(rowIndex, true); } }); myUpdateButton.addEventHandler('click', function (event) { if (!myUpdateButton.disabled) { // save changes. myDataTable.endRowEdit(rowIndex, false); } }); myEditButton.addEventHandler('click', function () { if (!myEditButton.disabled) { myDataTable.beginRowEdit(rowIndex); updateButtons('edit'); } }); myDeleteButton.addEventHandler('click', function () { if (!myDeleteButton.disabled) { myDataTable.deleteRow(rowIndex); updateButtons('delete'); } }); }, columns: [ { text: 'Order ID', editable: false, dataField: 'OrderID', width: 200 }, { text: 'Freight', dataField: 'Freight', cellsFormat: 'f', cellsAlign: 'right', align: 'right', width: 200 }, { text: 'Ship Country', dataField: 'ShipCountry', width: 250, columnType: 'custom', createEditor: function (row, cellValue, editor, width, height) { // create jqxInput editor. var inputContainer = document.createElement('input'); inputContainer.style.paddingLeft = '4px'; inputContainer.style.boxSizing = 'border-box'; inputContainer.style.border = 'none'; inputContainer.id = 'jqxInput'; editor[0].appendChild(inputContainer); var countries = ["Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antarctica", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bermuda", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Brazil", "Brunei", "Bulgaria", "Burkina Faso", "Burma", "Burundi", "Cambodia", "Cameroon", "Canada", "Cape Verde", "Central African Republic", "Chad", "Chile", "China", "Colombia", "Comoros", "Congo, Democratic Republic", "Congo, Republic of the", "Costa Rica", "Cote d'Ivoire", "Croatia", "Cuba", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "East Timor", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea", "Estonia", "Ethiopia", "Fiji", "Finland", "France", "Gabon", "Gambia", "Georgia", "Germany", "Ghana", "Greece", "Greenland", "Grenada", "Guatemala", "Guinea", "Guinea-Bissau", "Guyana", "Haiti", "Honduras", "Hong Kong", "Hungary", "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Korea, North", "Korea, South", "Kuwait", "Kyrgyzstan", "Laos", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macedonia", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Mauritania", "Mauritius", "Mexico", "Micronesia", "Moldova", "Mongolia", "Morocco", "Monaco", "Mozambique", "Namibia", "Nauru", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Niger", "Nigeria", "Norway", "Oman", "Pakistan", "Panama", "Papua New Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Qatar", "Romania", "Russia", "Rwanda", "Samoa", "San Marino", " Sao Tome", "Saudi Arabia", "Senegal", "Serbia and Montenegro", "Seychelles", "Sierra Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "Spain", "Sri Lanka", "Sudan", "Suriname", "Swaziland", "Sweden", "Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Togo", "Tonga", "Trinidad and Tobago", "Tunisia", "Turkey", "Turkmenistan", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Vanuatu", "Venezuela", "Vietnam", "Yemen", "Zambia", "Zimbabwe"]; var InputSelector = '#jqxInput'; var InputOptions = { source: countries, width: '100%', height: '100%' }; var myInput = jqwidgets.createInstance(InputSelector, 'jqxInput', InputOptions); myInput.val(cellValue); }, initEditor: function (row, cellValue, editor) { // set jqxInput editor's initial value. if (cellValue === undefined) { cellValue = ''; } document.getElementById('jqxInput').value = cellValue; }, getEditorValue: function (index, value, editor) { // get jqxInput editor's value. return document.getElementById('jqxInput').value; } }, { text: 'Shipped Date', dataField: 'ShippedDate', cellsAlign: 'right', align: 'right', cellsFormat: 'dd/MM/yyyy' } ] }; var myDataTable = jqwidgets.createInstance(selector, 'jqxDataTable', options); } //# sourceMappingURL=typescript-datatable-editing.js.map