I am working on backgrid to achieve grid functionality where i have a requirement to add a datepicker to a backgrid cell instead of using the Backgrid.DateCell. Awaiting for you response
samplecode:
datagrid(collection) : {
colomns = [{
name : "name",
label: "Name",
cell : string
},
{
name : "date",
label: "Date",
cell : string
}
}],
var lgrid = new Backgrid.Grid({
columns: columns,
collection: collection,
emptyText: "no data"
});
this.$("#grids").append(lgrid.render().$el);
}
these are columns defined in backgrid.I need to populate date in the string cell using datepicker when i click on the string cell of date a datepicker should be opened by which i need to pick the date into the cell. Please help me out....
Thanks & Regards gangadhar v
There maybe better way to implement it, but I was able to do it like this.