| Issue 43: | Inject RowEvent with Row object | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Need to add getters and setters for the RowEvent object. This will enable it to be more flexible. |
| Issue 43: | Inject RowEvent with Row object | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Need to add getters and setters for the RowEvent object. This will enable it to be more flexible. |
Done, now have a much better RowEvent object. {{{ public class CustomRowEvent extends MouseRowEvent { @Override public String execute(Object item, int rowcount) { String result = super.execute(item, rowcount); result += ";$(this).attr('title', 'more infor')"; return result; } } }}}