Salutations!
I’m fairly new here, but I wanted to ask if there’s a way in jqxGrid where I can display in a single column, two datafields.
Example: having my datafields
datafields: [
{ name: ‘firstname’, map: ‘name>firstname’},
{ name: ‘lastname’, map: ‘name>lastname’},
{ name: ‘age’ },
{ name: ‘birthday’ }
],
// and then in the jqxGrid columns
columns: [
{ text: ‘Name’, datafield: ‘firstname’, displayfield: ‘lastname’, width: ‘20%’ }
]
I wanted to display the ‘firstname’ and the ‘lastname’ in the column ‘Name’ together. I’ve been stuck at this for a day, please help.
Thank you!