i have a strange problem with jquery. i have a date field in my db: ... Field('Data_richiesta','date', label='Data richiesta'), .... and other field ..
and jquery string in my controller: table=plugin_jqgrid(db.Rapportino,columns=['id', 'Motivo', 'Data_richiesta'],col_widths={'id':80,'Motivo':150, 'Data_richiesta': 150},width=300) with this, jquery table display nothing :S but if i delete 'Data_richiesta' field in jquery string: table=plugin_jqgrid(db.Rapportino,columns=['id', 'Motivo'],col_widths={'id':80,'Motivo':150},width=300) i can see all my record .. what i'm doing wrong??