https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31498

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #3 from [email protected] ---
I've been trying to add new values in primary_contact_method as well.  I
finally added some in JQuery:
 var myOptions = {
    val1 : 'Check',
    val2 : 'Call'
};
var mySelect = $('#primary_contact_method');
$.each(myOptions, function(val, text) {
    mySelect.append(
        $('<option></option>').val(val).html(text)
    );
});
Unfortunately, these appear to be display-only, and not have any real value
(they don't apply when the page is saved).  Anyone have any insight?  There has
to be a work-around somewhere.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to