Can somebody help me please add some text before the default "value" of a multiple select option.
The code that responds for this is:
if (!K2HelperPermissions::canAddItem($categories[$i]->value)) {
$categories[$i]->disable = true;
}
$lists['categories'] = JHTML::_('select.genericlist', $categories_options, 'catid[]', 'multiple="multiple" style="height:150px"', 'value', 'text',$catid );
And here is how the "option" looks now <option value="891">Uncategorized</option>
What I want is to add some text before the letters in value="", so for example it looks like:
<option value="sometext_891">Uncategorized</option>
Can somebody Please help me?