I've added a FormItemIcon to a ComboBoxItem that appears in a ListGrid using row based editing, using SmartClient Version: v9.1p_2015-05-30/PowerEdition Deployment (built 2015-05-30).
When I edit the row, my icon appears to the right of the combobox, as desired, and it's clickable. Is there some way to access it via the keyboard? Tabbing takes me to the next cell.
When I edit the row, my icon appears to the right of the combobox, as desired, and it's clickable. Is there some way to access it via the keyboard? Tabbing takes me to the next cell.
Code:
{
... // field definition
icons: [{
src: "icons/table_edit.png",
click: function (form,item,icon) {
console.log(form);
console.log(item);
console.log(icon);
}
}]
}