This is a small issue. I want to change the title column when record is clicked for details. I did follow the delegate class tutorial, but there is one issue.
http://xataface.com/documentation/tutor ... te_classes
The record value I am trying to put in this case is populated using value list. That is - a Name table has nameid and name. Another subscriber table has this name which is populated by valuelist, and stores nameid
Now when I say in Subscriber table delegate class
function titleColumn(){
return 'name';
}
It returns the nameid. Instead I want name to be displayed here. Do I need to put some sql stuff here??