dojo - How can I customize editing behavior of dojox.Grid? -


i using code like:

var paymentlayout = [    { field: "id", name: "id" },    { field: "paymentdate", name: "payment date",editable: true } ];  paymentsgrid = new dojox.grid.datagrid(     {        query: { id: "*" },        store: store,        structure: paymentlayout      },    "gridnode" );  paymentsgrid.startup();  

now want customize editing behavior of grid. example, show date picker editing date field.

i have found dojox.grid.editors.datetextbox, not able find example of usage. how can tell grid use editor payment date column in above example?

take at: dojo datagrid date , time


Comments

Popular posts from this blog

delphi - TJvHidDeviceController "DevicePath" always showing "\" -

Disabling Android home button for industry application -

asp.net mvc 3 - Unexpected "foreach" keyword after "@" character -