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

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -