show Name in Posted By instead of ID
Archived from the Xataface Users forum.
muzafar — Tue Feb 21, 2012 11:06 am
Greetings,
In xataface view sections, we have id showing in Posted By, I want to change it to the name instead of ID, can you please lead me how can I change it to Name from ID?
please check the snapshot in which I have mentioned posted by.
your help will be greatly appreciated.
Thanks..
ADobkin — Tue Feb 21, 2012 3:56 pm
You can use the getCreator() method in your table delegate class, as in:
- Code: Select all
function getCreator(&$record) { return $record->display('userName'); }
Substitute whatever column name or function you use to determine the user name in your application.
muzafar — Wed Feb 22, 2012 12:57 am
yes thanks it’s work.