Export excel for content filtered by dropdown

QuestionsExport excel for content filtered by dropdown
Sunil asked 10 years ago

My Grid is populated using dropdowns, when I export it using excel it is putting only keys of select not the values.

Id Client ID Avatar Status Project Process
466374 4 395 20 3 66

All the above numbers expect ID are suppose to show respective name and not their ID's.

Please Help

1 Answers
Abu Ghufran answered 10 years ago

To make exported file display dropdown text instead of ids,

You need to remove from column settings:
$col["formatter"] = "select";

and use clients.name as client_id convention in sql. e.g.

$g->select_command = "SELECT id, invdate, clients.name as client_id, amount, note FROM invheader INNER JOIN clients on clients.client_id = invheader.client_id";

Your Answer

17 + 2 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?