Problems reading a table in the grid #5354
Unanswered
patriciomh1965
asked this question in
Help
Replies: 1 comment
-
I see in TablaSeguroContratoRow.cs you have Can you go to your column picker and restore defaults maybe? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello community, I have tried to read an information from the table that contains 2 compound keys. But I can't get the information, here is my schedule. If someone knows how to do it, I would appreciate:
GRID :
namespace SegurosMAPC.BaseDatos {
.......
........
protected getColumns() {
var columns = super.getColumns();
columns.splice(1, 0,
{
field: 'EDITAR',
name: '',
format: ctx => '' +
'',
width: 24,
minWidth: 24,
maxWidth: 24
});
return columns;
}
ROW :
namespace SegurosMAPC.BaseDatos.Entities
{
using Serenity;
using Serenity.ComponentModel;
using Serenity.Data;
using Serenity.Data.Mapping;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
.....
.....
DATA BASE TABLE:
Variable s1 is null, however the record exists in table.
Beta Was this translation helpful? Give feedback.
All reactions