My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 43: Inject RowEvent with Row object
1 person starred this issue and may be notified of changes. Back to list
Status:  Fixed
Owner:  extremec...@gmail.com
Closed:  Oct 2007


 
Reported by extremec...@gmail.com, Oct 26, 2007
Need to add getters and setters for the RowEvent object. This will enable
it to be more flexible.
Oct 27, 2007
#1 extremec...@gmail.com
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;
    }
}
}}}
Status: Fixed

Powered by Google Project Hosting