Skip to main content
Topic: Multi Selection and view issue (Read 946 times) previous topic - next topic

Multi Selection and view issue

by mistake I removed the post :) sorry.
I put all the details again if somebody needs the info.
code you suggested was:
//execute SQL statement and return the result
for($i=0; $i<count($records); $i++){
    $tags = $records[$i]['tags'];
    $tags = $db->rawQuery("SELECT tags.name FROM tags WHERE tags.id IN ({$tags})");
    $records[$i]['tags']= implode(", ", array_map('current', $tags));
}
Screen shot is like below. and when I add the code before view I got the below error message.




 

Re: Multi Selection and view issue

Reply #1
still not successfull about how to display mulpile chosen Items in view page.
only IDs are showed or when I chose to show label only on label  is dsiplayed.
Does anybody have any tutorial?