NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

//@author anu.agarwal, mohammad.hashmi
//JS For Configure Invoice Parameter
//namespace for the tab
Ext.ns('cms.admin.slimfast.invoice.parameter');
var cmsadminCollectioninvoiceparamPanel = 'cmsadmincollectionsinvoiceparametersinvoiceparametersTabPanel';
var invoiceparametersTabPanel;
var selectedInvoiceParametersTypeId;
var addInvoiceParametersType = 'Add';
var editInvoiceParametersType = 'Update';

//============================Grid headers ===========================

cms.admin.slimfast.invoice.parameter.fieldsArray = [
['fkTagCategoryType.name', 'Field Type', 'string'],
['name', 'Parameter Name', 'string'],
['description', 'Description', 'string']
];
cms.admin.slimfast.invoice.parameter.headerArray = [];
var accountLanguages = cms.common.init.getLanguagesMappedToAccount();
var temp = accountLanguages.rows;
cms.admin.slimfast.invoice.parameter.accountLanguages = temp;


Ext.each(cms.admin.slimfast.invoice.parameter.accountLanguages, function(item) {
var language = item.split('::');
languageCode = language[2];
languageName = language[1];
if (languageCode != "en") {
temp = ['cmsTagCategoryLang.' + languageCode, languageName + ' Display Name', 'string'];
cms.admin.slimfast.invoice.parameter.fieldsArray.push(temp);

}
});

cms.admin.slimfast.invoice.parameter.fieldsArray.push(['createUser', 'Create User', 'string']);
cms.admin.slimfast.invoice.parameter.fieldsArray.push(['createTime', 'Create Time', 'string']);
cms.admin.slimfast.invoice.parameter.fieldsArray.push(['updateUser', 'Update User', 'string']);
cms.admin.slimfast.invoice.parameter.fieldsArray.push(['updateTime', 'Update Time', 'string']);

var headerMap = {};
for (var i = 0; i < cms.admin.slimfast.invoice.parameter.fieldsArray.length; i++) {
var iArray = cms.admin.slimfast.invoice.parameter.fieldsArray[i];
headerMap[iArray[0]] = iArray[1];
}

for (var x in headerMap) {
cms.admin.slimfast.invoice.parameter.headerArray.push(x);
}

cms.admin.slimfast.invoice.parameter.invoiceparametersTabPanel = function(attributes) {
var gridConfig = {
singleSelect: false
};

cms.admin.slimfast.invoice.parameter.store = dms.common.createStore('pkCmsTagCategory', resolveCMSPath('getCMSTagCategory.do'), cms.admin.slimfast.invoice.parameter.fieldsArray, null, null, null, true, true, null, true);

// ============================= Invoice Parameters Grid =======================================
var buttonsArrayEmpty = [];
cms.admin.slimfast.invoice.parameter.grid = dms.grid.component.createGridComponent('Count ', 'pkCmsTagCategory', cms.admin.slimfast.invoice.parameter.store, cms.admin.slimfast.invoice.parameter.fieldsArray, cms.admin.slimfast.invoice.parameter.headerArray, buttonsArrayEmpty, '{}', null);
cms.admin.slimfast.invoice.parameter.grid.addPlugin('PagingSelectionPersistence');



cms.admin.slimfast.invoice.parameter.grid.getSelectionModel().on('select', function() {

var getData = cms.admin.slimfast.invoice.parameter.grid.getPlugin('PagingSelectionPersistence').getPersistedSelection();
var length = cms.admin.slimfast.invoice.parameter.grid.getPlugin('PagingSelectionPersistence').getPersistedSelection().length;
if (length == 0) {
Ext.ComponentQuery.query(">#editInvoiceParamButton")[0].disable();
Ext.ComponentQuery.query(">#deleteInvoiceParamButton")[0].disable();
Ext.ComponentQuery.query(">#addInvoiceParamButton")[0].enable();
}
if (length == 1) {
Ext.ComponentQuery.query('>#editInvoiceParamButton')[0].enable();
Ext.ComponentQuery.query('>#deleteInvoiceParamButton')[0].enable();
Ext.ComponentQuery.query('>#addInvoiceParamButton')[0].disable();
}
if (length > 1) {
Ext.ComponentQuery.query('>#addInvoiceParamButton')[0].disable();
Ext.ComponentQuery.query(">#editInvoiceParamButton")[0].disable();
Ext.ComponentQuery.query(">#deleteInvoiceParamButton")[0].enable();
}

});

cms.admin.slimfast.invoice.parameter.grid.getSelectionModel().on('deselect', function() {

var getData = cms.admin.slimfast.invoice.parameter.grid.getPlugin('PagingSelectionPersistence').getPersistedSelection()[0];
var length = cms.admin.slimfast.invoice.parameter.grid.getPlugin('PagingSelectionPersistence').getPersistedSelection().length;
if (length == 0) {
Ext.ComponentQuery.query(">#editInvoiceParamButton")[0].disable();
Ext.ComponentQuery.query(">#deleteInvoiceParamButton")[0].disable();
Ext.ComponentQuery.query(">#addInvoiceParamButton")[0].enable();
}
if (length == 1) {
Ext.ComponentQuery.query('>#editInvoiceParamButton')[0].enable();
Ext.ComponentQuery.query('>#deleteInvoiceParamButton')[0].enable();
Ext.ComponentQuery.query(">#addInvoiceParamButton")[0].disable();
}
if (length > 1) {
Ext.ComponentQuery.query('>#addInvoiceParamButton')[0].disable();
Ext.ComponentQuery.query(">#editInvoiceParamButton")[0].disable();
Ext.ComponentQuery.query(">#deleteInvoiceParamButton")[0].enable();
}
});


//================================ Panel Buttons =====================================

var invoiceParamTabPanel = new Ext.panel.Panel({
activeTab: 0,
bodyCssClass: true,
border: false,
autoHeight: true,
items: [{

layout: 'fit',
height: 570,
tbar: [{
text: common.i18n.getDisplayValue('CLS_SF_IP_AP', 'Add Parameter'),
tooltip: common.i18n.getDisplayValue('CLS_SF_IP_AP', 'Add Parameter'),
iconCls: 'add',
itemId: 'addInvoiceParamButton',
actionIdentifier: attributes.dataTypeId + ":" + attributes.menuId + ":saveParameter",
handler: function() {
cms.admin.slimfast.invoice.parameter.addInvoiceParameter();
}
},
{
text: common.i18n.getDisplayValue('CLS_SF_IP_UP', 'Update Parameter'),
tooltip: common.i18n.getDisplayValue('CLS_SF_IP_UP', 'Update Parameter'),
iconCls: 'editded',
itemId: 'editInvoiceParamButton',
disabled: 'true',
actionIdentifier: attributes.dataTypeId + ":" + attributes.menuId + ":saveParameter",
handler: function() {
var getData = cms.admin.slimfast.invoice.parameter.grid.getSelectionModel().getSelection();
cms.admin.slimfast.invoice.parameter.addInvoiceParameter(getData);
}
},
{
text: common.i18n.getDisplayValue('CLS_SF_IP_DP', 'Delete Parameter'),
tooltip: common.i18n.getDisplayValue('CLS_SF_IP_DP', 'Delete Parameter'),
iconCls: 'delete',
itemId: 'deleteInvoiceParamButton',
disabled: 'true',
actionIdentifier: attributes.dataTypeId + ":" + attributes.menuId + ":deleteParameter",
handler: function() {
Ext.Msg.show({
title: common.i18n.getDisplayValue('CLS_SF_IP_DIT', 'Delete Invoice Tag'),
message: common.i18n.getDisplayValue('CLS_SF_IP_DSS' , 'Are you sure you want to delete the record?'),
buttons: Ext.Msg.YESNO,
fn: function(btn) {
if (btn == 'yes') {

var getData = cms.admin.slimfast.invoice.parameter.grid.getSelectionModel().getSelection();

var pktagCategoryId = [];
for (var i = 0; i < getData.length; i++) {
pktagCategoryId[i] = getData[i].get('pkCmsTagCategory');
}
Ext.Ajax.request({
url: resolveCMSPath('deleteInvoiceParamTag.do'),
params: {
tagCategoryIds: pktagCategoryId
},
method: 'POST',
success: function(result, request) {
Ext.example.msg(common.i18n.getDisplayValue('CLS_ADMN_RULE_SUCS_DEL','Successfully Deleted'));
if (cms.admin.slimfast.invoice.parameter.grid) {
cms.admin.slimfast.invoice.parameter.grid.getPlugin('PagingSelectionPersistence').clearPersistedSelection();
Ext.ComponentQuery.query("#editInvoiceParamButton")[0].disable();
Ext.ComponentQuery.query("#deleteInvoiceParamButton")[0].disable();
Ext.ComponentQuery.query("#addInvoiceParamButton")[0].enable();

cms.admin.slimfast.invoice.parameter.grid.getStore().load();
}
},
failure: function(result, request) {
Ext.example.msg(common.i18n.getDisplayValue('CLS_SF_IP_FIP','Failed to Delete Invoice Parameters'));
}
});

}


}

});

}
}
],
items: [cms.admin.slimfast.invoice.parameter.grid]
}],

});
return invoiceParamTabPanel;
};
//=========================================Add==============================
cms.admin.slimfast.invoice.parameter.addInvoiceParameter = function(getData) {
cms.admin.slimfast.invoice.parameter.configItems = new Array();
var items = new Array();
var winTitle = common.i18n.getDisplayValue('CLS_SF_IP_CIP', 'Configure Invoice Parameter');

var tagCategoryTypeStore = Ext.create('Ext.data.Store', {
proxy: {
type: 'ajax',
actionMethods: {
read: 'POST'
},
url: '/Collections/cms/dropDownItems.do',
reader: {
type: 'json',
rootProperty: 'rows'
}
},
listeners: {
load: function() {
if (getData != null || getData != undefined) {
this.add({
'value': getData[0].data.fkTagCategoryType.tagCategoryTypeId,
'displayName': getData[0].data.fkTagCategoryType.name
});
}
}
},
autoLoad: true,
fields: ['displayName', 'value', 'isDefaultSelected', 'ref1', 'title', 'ref4']
});
tagCategoryTypeStore.load({
params: {
dataTypeId: '20808',
fieldId: 'tagCategoryType',
},
});


cms.admin.slimfast.invoice.parameter.tagCategoryCombo = new Ext.form.field.ComboBox({
fieldLabel: common.i18n.getDisplayValue("CLS_SF_IP_FT", "Field Type"),
labelSeparator: '<span style="color:red"> * </span>:',
itemId: 'fieldT',
typeAhead: true,
triggerAction: 'all',
lazyRender: true,
queryMode: 'local',
store: tagCategoryTypeStore,
typeAhead: false,
editable: false,
valueField: 'value',
displayField: 'displayName',
style: "width:450px !important",
labelStyle: "font-weight:bold !important; width:150px !important;",
allowBlank: false,
value: getData != null ? getData[0].data['fkTagCategoryType']['tagCategoryTypeId'] : "",
});


var parameter = new Ext.form.TextField({
itemId: 'parameter',
fieldLabel: common.i18n.getDisplayValue("CLS_SF_IP_PN", "Parameter Name"),
labelSeparator: '<span style="color:red"> * </span>:',
maxLength: 250,
allowBlank: true,
style: "width:450px !important",
labelStyle: "font-weight:bold !important; width:150px !important;",
allowBlank: false,
value: getData != null ? getData[0].data.name : "",
});

var description = new Ext.form.TextField({
itemId: 'description',
fieldLabel: common.i18n.getDisplayValue("CLS_SF_IP_DESC", "Description"),
maxLength: 250,
allowBlank: true,
style: "width:450px !important",
labelStyle: "font-weight:bold !important; width:150px !important;",
value: getData != null ? getData[0].data.description : "",
});

cms.admin.slimfast.invoice.parameter.configItems.push(cms.admin.slimfast.invoice.parameter.tagCategoryCombo);
cms.admin.slimfast.invoice.parameter.configItems.push(parameter);
cms.admin.slimfast.invoice.parameter.configItems.push(description);


var languageTitle = new Ext.form.DisplayField({
fieldLabel: common.i18n.getDisplayValue("CLS_SF_IP_LANG", "Language"),
itemId: 'languageTitle',
frame: false,
cls: 'text-wrapper',
border: false,
labelStyle: "font-weight:bold !important;padding:0px 50px 0px 0px;",
});

var enterValueTitle = new Ext.form.DisplayField({
fieldLabel: common.i18n.getDisplayValue("CLS_SF_IP_ELV", "Enter Value"),
itemId: 'enterValueTitle',
frame: false,
cls: 'text-wrapper',
border: false,
labelStyle: "font-weight:bold !important;padding:0px 50px 0px 0px;",
});


var allTitleComponents = {
itemId: 'allTitleComponents',
layout: 'vbox',
cls: 'expand-panel',
layoutConfig: {
align: 'stretch'
},
border: false,
items: [languageTitle, enterValueTitle]

};

items.push({
items: [allTitleComponents]
});

var langaugeId = 0;
Ext.each(cms.admin.slimfast.invoice.parameter.accountLanguages, function(item) {


var language = item.split('::');
langaugeId = language[0];
languageCode = language[2];
if (languageCode != "en") {
var languageDisplayField = new Ext.form.DisplayField({

itemId: 'languageDisplayField' + langaugeId,
frame: false,
cls: 'text-wrapper',
border: false,
value: language[1],
style: 'display:inline-block;text-align:center',
labelStyle: "font-weight:bold !important;",
fieldStyle: "font-weight:bold !important;"
});

var enterValValue = new Ext.form.TextField({
width: '150px',
itemId: 'enterValValue' + langaugeId,
id: 'enterValValue-' + langaugeId,
maxLength: 250,
listeners: {
change: function() {
var noneCheck = true;
var allCheck = true;
Ext.each(cms.admin.slimfast.invoice.parameter.accountLanguages, function(item) {
var testLanguage = item.split('::');
testTranslationId = testLanguage[0];
if (testTranslationId != "-1") {
var value = Ext.getCmp('enterValValue-' + testTranslationId).getValue();
if (value == undefined || value == null || value == "") {
allCheck = false;
} else {
noneCheck = false;
}
}
})
if (noneCheck ^ allCheck == true) {
if (getData == null) {
var param = Ext.ComponentQuery.query("#parameter")[0].value;
var fieldT = Ext.ComponentQuery.query("#fieldT")[0].value;
if ((param.length > 0 && fieldT.length > 0)) {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].enable();
} else {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].disable();
}
}
if (getData != null) {
var param = Ext.ComponentQuery.query("#parameter")[0].value;
var fieldT = Ext.ComponentQuery.query("#fieldT")[0].value;
if (param.length > 0) {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].enable();
} else {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].disable();
}
}
} else {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].disable();
}
}
}


});

var Page = Ext.create('Ext.panel.Panel', {
itemId: 'InvoiceParameterConfigPage' + langaugeId,
layout: 'anchor',
border: false,
defaults: {
anchor: '95%',
width: '200px'
},
items: [languageDisplayField, enterValValue]

});


items.push({
items: [Page]
});
}
});




var addInvoiceParameterConfig = {
height: 125,
itemId: 'InvoiceParameterConfigHboxId' + langaugeId,
layout: 'hbox',
scrollable: true,
cls: 'expand-panel',
layoutConfig: {
align: 'stretch'
},
border: false,
items: items

};

cms.admin.slimfast.invoice.parameter.configItems.push(addInvoiceParameterConfig);

var configPanel = new Ext.form.FormPanel({
standardSubmit: true,
frame: true,
monitorValid: true,
scrollable: true,
animCollapse: false,
bodyStyle: 'background-color:#fff;padding: 10px;margin-left: 5px;',
buttonAlign: 'center',
layout: 'anchor',
cls: 'cls-window-invoiceParametersConfig',
autoScroll: true,
items: cms.admin.slimfast.invoice.parameter.configItems,
listeners: {

afterrender: function() {
var noneCheck = true;
var allCheck = true;
var templang = [];
Ext.each(cms.admin.slimfast.invoice.parameter.accountLanguages, function(item) {
var language = item.split('::');
languageId = language[0];
languageCode = language[2];
if (getData != undefined && getData != null && languageCode != 'en') {
Ext.getCmp('enterValValue-' + languageId).setValue(getData[0].data['cmsTagCategoryLang'][languageCode]);

}

})


},


validitychange: function() {
var noneCheck = true;
var allCheck = true;
Ext.each(cms.admin.slimfast.invoice.parameter.accountLanguages, function(item) {

var testLanguage = item.split('::');
testTranslationId = testLanguage[0];
if (testTranslationId != "-1") {
var value = Ext.getCmp('enterValValue-' + testTranslationId).getValue();
if (value == undefined || value == null || value == "") {
allCheck = false;
} else {
noneCheck = false;
}
}

})

if (noneCheck ^ allCheck == true) {
if (getData == null) {
var param = Ext.ComponentQuery.query("#parameter")[0].value;
var fieldT = Ext.ComponentQuery.query("#fieldT")[0].value;
if ((param.length > 0 && fieldT.length > 0)) {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].enable();
} else {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].disable();
}
}
if (getData != null) {


var param = Ext.ComponentQuery.query("#parameter")[0].value;



if ((param.length > 0)) {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].enable();
} else {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].disable();
}
}
} else {
Ext.ComponentQuery.query("#AddInvoiceParameterConfigSaveButton")[0].disable();
}
}
},

buttons: [{
text: common.i18n.getDisplayValue('COMMON_MSG_SUBMIT', 'Submit'),
tooltip: common.i18n.getDisplayValue('COMMON_MSG_SUBMIT', 'Submit'),
cls: 'hrc-btn-primary',
itemId: 'AddInvoiceParameterConfigSaveButton',
buttonAlign: 'center',
formBind: true,
handler: function() {
var getData = cms.admin.slimfast.invoice.parameter.grid.getSelectionModel().getSelection();
var query = {};
var URL = resolveCMSPath('addorEditInvoiceParametersTagCategory.do');
var createUser = null;
var createTime = null;
Ext.each(cms.admin.slimfast.invoice.parameter.accountLanguages, function(item) {
if ((getData == null || getData == undefined || getData.length === 0)) {
var language = item.split('::');
langaugeId = language[0];
languageCode = language[2];
if (languageCode != "en") {
var tagValues = Ext.getCmp('enterValValue-' + langaugeId).getRawValue().split(',');
query[langaugeId] = {
'name': tagValues[0]
};
}
} else if (getData != null || getData != undefined) {
var language = item.split('::');
langaugeId = language[0];
languageCode = language[2];
if (languageCode != "en") {
var tagValues = Ext.getCmp('enterValValue-' + langaugeId).getRawValue().split(',');
var langId = getData[0].data['pkCmsTagCategoryLang'][languageCode];
query[langaugeId] = {
'name': tagValues[0],
'pkCmsTagCategoryLang': langId
};

}
if (languageCode == "en") {
var eng = Ext.ComponentQuery.query('#parameter')[0].getValue();
var engId = getData[0].data['pkCmsTagCategoryLang']['en'];
query[-1] = {
'name': eng,
'pkCmsTagCategoryLang': engId
}
}
createUser = getData[0].data.createUser;
createTime = getData[0].data.createTime;

}
});
if (getData == null || getData == undefined || getData.length === 0) {
var eng = Ext.ComponentQuery.query('#parameter')[0].getValue();
query[-1] = {
'name': eng
}
}
var translationsJson = JSON.stringify(query);
var getData = cms.admin.slimfast.invoice.parameter.grid.getPlugin('PagingSelectionPersistence').getPersistedSelection()[0];
var selectedId = getData === undefined ? null : getData.data['pkCmsTagCategory'];
var parameterData = Ext.ComponentQuery.query('#parameter')[0].getValue();
var descriptionData = Ext.ComponentQuery.query('#description')[0].getValue();
if (Ext.encode(query) == '{}') {} else {
Ext.Ajax.request({
url: URL,
method: 'POST',
params: {
tagCategoryId: selectedId,
tagCategoryType: cms.admin.slimfast.invoice.parameter.tagCategoryCombo.getValue(),
parameterName: parameterData,
description: descriptionData,
query: translationsJson,
createUser: createUser,
createTime: createTime
},
success: function(response, opts) {
var responseTxt = Ext.decode(response.responseText);
var message = responseTxt.msg;
var success = responseTxt.success;
if (success) {
Ext.example.msg('', common.i18n.getDisplayValue('ADM_CLS_IP_SUCCS_MSG', 'Changes saved successfully'));
cms.admin.slimfast.invoice.parameter.addConfigWin.destroy();
if (cms.admin.slimfast.invoice.parameter.store) {
cms.admin.slimfast.invoice.parameter.grid.getPlugin('PagingSelectionPersistence').clearPersistedSelection();
cms.admin.slimfast.invoice.parameter.store.load();
}


} else {
Ext.example.msg('', common.i18n.getDisplayValue('ADM_CLS_IP_FAIL_MSG', 'Failed to save the changes'));
}
}

});


}

}
},
{
text: common.i18n.getDisplayValue('COMMON_MSG_CANCEL', 'Cancel'),
cls: 'hrc-btn-tertiary hrc-btn-float-right',
handler: function() {
cms.admin.slimfast.invoice.parameter.addConfigWin.destroy();
}
}
],
});

cms.admin.slimfast.invoice.parameter.addConfigWin = new Ext.Window({
title: winTitle,
id: 'addOrEditWindow',
autoid: 'cmsInvoiceParametersConfigWindow',
minWidth: screen.width * 0.60,
minHeight: screen.height * 0.40,
maxWidth: screen.width * 0.85,
maxHeight: screen.height * 0.55,
modal: true,
constrain: true,
layout: 'fit',
autoDestroy: false,
items: [configPanel],

listeners: {
afterrender: function() {
Ext.defer(function() {
window.scrollTo(this.x, this.y);
this.body.dom.scrollTop = 0;
}, 100, this);

}

}
});
cms.admin.slimfast.invoice.parameter.addConfigWin.show();
};


//================================Main tab=================================

cms.admin.slimfast.invoice.parameter.tabPanel = function(attributes) {
var configureInvoiceParameters = cms.admin.slimfast.invoice.parameter.invoiceparametersTabPanel(attributes);
var configureParameterValues = cms.collections.invoice.parameters.invoiceparametersTabPanel(attributes);
cms.admin.slimfast.invoice.parameter.dataTypeId = attributes.dataTypeId;
cms.admin.slimfast.invoice.parameter.menuId = attributes.menuId;

configureParameterValues.setTitle(null);
var mainTabPanel = new Ext.tab.Panel({
itemId: cmsadminCollectioninvoiceparamPanel + '-panel',
activeTab: 0,
bodyCssClass: true,
border: false,
autoDestroy: true,
items: [{
title: common.i18n.getDisplayValue('CLS_SF_IP_CIP', 'Configure Invoice Parameter'),
layout: 'fit',
itemId: 'invoiceParameters',
tabIdentifier: cms.admin.slimfast.invoice.parameter.dataTypeId !== null ? dms.common.accountIdNRoleId + ":" + cms.admin.slimfast.invoice.parameter.menuId : undefined,
items: [configureInvoiceParameters]
}, {
title: common.i18n.getDisplayValue('CLS_SF_IP_CPV', 'Configure Parameter Values'),
itemId: 'invoiceValues',
layout: 'fit',
items: [configureParameterValues]
}],
});
return mainTabPanel;

}
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.