Hi all,
Apologies upfront for a dumb question.
I'm trying to recreate the following showcase example using a datasource:
http://www.smartclient.com/smartgwt/...m_editing_cell
I'm unable to replace the code above with data from a datasource (Coming from a MySql Database).
I've successfully populated the list grid from this example:
http://www.smartclient.com/smartgwt/...id_editing_row (Using my datasource)
Any help will be useful to beginners like me.
Thanks in advance.
Apologies upfront for a dumb question.
I'm trying to recreate the following showcase example using a datasource:
http://www.smartclient.com/smartgwt/...m_editing_cell
Code:
private ListGridRecord[] getData() { return new ListGridRecord[]{ new NameValueRecord(1, "String Editor", "some string"), new NameValueRecord(2, "Password Editor", "donkeykong"), new NameValueRecord(3, "Date Editor", new Date()), new NameValueRecord(4, "Boolean Editor", Boolean.FALSE), new NameValueRecord(5, "Masked Int Editor", 5), new NameValueRecord(6, "SelectItem Editor", "Dog"), new NameValueRecord(7, "Slider Editor", 7) }; }
I've successfully populated the list grid from this example:
http://www.smartclient.com/smartgwt/...id_editing_row (Using my datasource)
Any help will be useful to beginners like me.
Thanks in advance.
Comment