Remove ZERO value from price edit type

To a price edit field, I am sending blank value… but in grid is show $0. It is not a problem at this time, but when my user will input a new value to this field, ZERO value is not automatically remove causing some problems, because user forget to remove zero.



Does grid has any configuration to not dispay ZERO value and I send a blank? Or remove old value automatically before edit?


>>Does grid has any configuration to not dispay ZERO value and I send a blank?




>>Or remove old value automatically before edit?
dhtmlx.com/docs/products/kb/inde … es&s=price


such logic can be added with the next code
mygrid.attachEvent(“onEditCell”,function(stage,id,ind){
if ( stage == 0 ) mygrid.cells(id,ind).setValue("");
return true;
})