On Sunday, January 4, 2015 at 6:35:24 PM UTC-6, Doug Harman wrote:
> I'd like to make the first row read only - which I've done - and include placeholder values for the data input requirements, e.g., a date format of yyyy-mm-dd. I can add placeholder values to all cells, but can't figure out how to add a placeholder to a single cell. Thanks in advance for your help.
I'd suggest you you the "cells" option in the constructor:
cells: function (row, col, prop) {
var cellProperties = {}
if(row === 0 && col === 0) {
cellProperties.placeholder = "text";
}
return cellProperties;
}