Grid eXcell_button with 2 button inside cell

Hi all,

image

i want add increase and decrease method to button + and - for the centered number and i want the number keep editable

my code:

function eXcell_button(cell){ //the eXcell name is defined here
if (cell){ //the default pattern, just copy it
this.cell = cell;
this.grid = this.cell.parentNode.grid;
eXcell_ed.call(this); //uses methods of the “ed” type
}
this.setValue=function(val){
this.setCValue(“<input type=‘button’ value=‘+’>”+val+“<input type=‘button’ value=‘-’>”);
}
this.getValue=function(){
return this.cell.firstChild.value; // get button label
}
}
eXcell_button.prototype = new eXcell;

thanks for your help.

Hi All,
I’m close to the goal , but i don’t increase or decrease on event,
i need help

image

my new code :

function eXcell_button(cell){ //the eXcell name is defined here
if (cell){ //the default pattern, just copy it
this.cell = cell;
this.grid = this.cell.parentNode.grid;
// eXcell_ed.call(this); //uses methods of the “ed” type
}

this.edit=function(){
this.val = this.getValue(); // save current value
this.val = this.cell.childNodes[1].value;
this.cell.childNodes[1].value=parseInt(this.val); // set the first part of data
}

this.setValue=function(val){

console.log(“ici val =”+ val);
this.setCValue(“<input type=‘button’ value=‘+’>”+“<input type=‘text’ style=‘width:50px;’ value='”+val+“'>”+“<input type=‘button’ value=‘-’>”);

this.cell.childNodes[0].onclick=function(e){
(e||event).cancelBubble=true;
console.log(“button 1=”+ val);
}

this.cell.childNodes[2].onclick=function(e){
(e||event).cancelBubble=true;
console.log(“button 2=” + val );
}
}
this.getValue=function() {
///return this.cell.firstChild.value; // get button label
return this.cell.childNodes[1].value;
}

this.detach=function(){
return this.val!=this.cell.childNodes[1].value;
}

}
eXcell_button.prototype = new eXcell;

Please, try to use the following solution:
http://snippet.dhtmlx.com/5/dbb003c42