In extjs in gird cell i have to display data like this:
FirstName LastName Department UserId
Jhon Peter Finance 8345
Facilities
Social
I am going to get data like this
<FirstName>Jhon</FirstName>
<LastName>Peter</LastName>
<Department>
<string>Finance</string>
<string>Facilities</string>
<string>Social</string>
</Department>
<UserId>8345</UserId>
Department array is a part of the data record from a service. I have to display department array value in grid cell one after the other. This department array values varies from user to user.
Can any share an example how to do it in extjs.