CalvinSlusarski / Knockout-handsontable

Knockout Custom Binding Handler for handsontable.
15 stars 5 forks source link

when you push a blank item to the observableArray , its not render when you update the columns #4

Closed papablopo closed 11 years ago

papablopo commented 11 years ago

when you push a blank item to the observableArray , its not render when you update the columns

'row_below': { name: 'Agregar Nuevo Registro', callback: function() { Detalle.push({'codigo': CALCULAMAXID(),'descripcion':' ', 'fecha_ini':'','fecha_fin':'', 'tipo_tiempo':' ','valor':'', 'prioridad':'','fecha_crea':'', 'usuario_crea':'', 'fecha_modifica':'', 'usuario_modifica':''}); $('#grilla').handsontable('selectCell',Detalle().length-1, 1); var sel = getSelected(); EDITADAS(sel+1); }}

have to put a blank space for each column

'row_below': { name: 'Agregar Nuevo Registro', callback: function() { Detalle.push({'codigo': CALCULAMAXID(),'descripcion':' ', 'fecha_ini':' ','fecha_fin':' ', 'tipo_tiempo':' ','valor':' ', 'prioridad':' ','fecha_crea':' ', 'usuario_crea':' ', 'fecha_modifica':' ', 'usuario_modifica':' '}); $('#grilla').handsontable('selectCell',Detalle().length-1, 1); var sel = getSelected(); EDITADAS(sel+1); }}

but if you delete the data at the col, an want to write new data, the same problem, its not render

papablopo commented 11 years ago

fixed