Hi Tony!
This is parts of my ColModel and JS:
{
label: 'Ist-Bewertung',
name: 'pm_stakeholder_subskills.grade',
width: 100, align: 'left', sortable: true, search: false, editable: true,
edittype: 'custom',
editoptions: {
custom_element:rate_input,
custom_value:rate_input_value
},
formatter: rate_input_formatter
}
//
function rate_input(value, options)
{
//do stuff, this works
return $(select_str);
}
// this does not work
function rate_input_value(input)
{
return input.val();
}
As I said, i think I trigger the error because rate_input_value gets passed multiple inputs ( as i have two) and therefor the input.val() fails.
Regards, Hannes
Btw. awesome plugin, we