Can we enter decimal values in the cell?
I wan to save cell value in decimal format. I'm using editable cell to edit the cell values.
It allows me to enter only the integer value. I also want to enter decimal values like 32.5, 870.55... etc...
In short, how to enter the decimal values in the cell.
I'm using post method the sent the information to server
I want the above "text" value to be either in integer or in decimal format.
Anyone know how to do this.
It allows me to enter only the integer value. I also want to enter decimal values like 32.5, 870.55... etc...
In short, how to enter the decimal values in the cell.
I'm using post method the sent the information to server
obj.onCellValidated = function(text, column, row){
var r = new AW.HTTP.Request;
r.setURL("setValues.jsp");
r.setRequestMethod("POST");
r.setParameter("editValues",'<%=editValues%>');
r.setParameter("column", column);
r.setParameter("row", row);
r.setParameter("text", text);
r.request();
}
I want the above "text" value to be either in integer or in decimal format.
Anyone know how to do this.
Brian
September 26,