Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. dhtmlXGridObject.prototype._createInput = function(name, value) {
  2.     var id;
  3.     if (this.globalBox && this.globalBox.id) {
  4.         id = this.globalBox.id;
  5.     } else {
  6.         id = this.entBox.id;
  7.     }
  8.  
  9.     var input = document.createElement('input');
  10.     input.type = 'hidden';
  11.     input.className = 'grid-input';
  12.     input.name = (id || 'dhtmlXGrid') + '_' + name;
  13.     input.id = input.name;
  14.     input.value = value;
  15.     this.parentForm.appendChild(input);
  16.     this.formInputs.push(input)
  17. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement