How to add header to editable grid

Hi,

I created a editable grid which is populated by data from database, but I am not able to add header row with header values.

Please help

Thanks
Manoj

The easiest way is to open your EditableGrid Details->Data

Click on “Edit as an Expression” and in the horizontal/vertical header values add a list of the required headers.

You can get the column names from an SQL query depending on your background DB, for example postgres is:

select column_name from information_schema.columns where table_name='captor_prime_aggregates';

I must admit, the names Vertical and Horizontal headers is not clear - it would be easier if they said Row and Column headers… :slight_smile:

hope this helps
regards
Seán