Hello everybody, this is the question, i read this post about how render any custom widget inside a cell, i tried it but when the grid must reload its content the widgets dissapear because the dijit control exists and the custom render function only returns the HTML. So, has anybody the answer?. Thanks

Re: dijit.form.Button(s) inside DataGrid cells
Not so sure this is possible in dataGrid 1.2, or so I've been told. I needed a button to edit a row in a frame. Here is the code I used to create a regular button, using a custom get function:
JavaScript:
function getEditButton( rowIndex, item ) {
if( !item ){
return this.defaultValue;
}
var grid = dijit.byId( 'gridNode' );
var docID = grid.store.getValue( item, 'docID' );
var buttonCode = 'Edit';
return buttonCode;
}
dataGrid def:
Edit
Hope this helps!