Hi , i've added the ability to delete rows and columns in a table in a build i made in 10.5.4
I have added the following methods to Dispatcher.java:
- Code: Select all
methods.put("table-remove-row", "tableRemoveRow"); //deleting of a row
methods.put("table-set-column-name", "tableSetColumnIdentifiers");//add/delete/update
methods.put("table-set-rows", "tableSetRowCount"); //adding /deleting rows
and implemented them in TableWidget.java.
Then i've coded the new functions in newlisp in guiserver.lsp.
After compiling the java stuff and make /make build, everything seems to work!
I was surprised how easy this was and am very impressed by the documentation and the clean code, everything 'just works' ;-)
Be aware that i'm not a professional programmer so who knows what errors I made but if Lutz is interested i'll be more then happy to share my code to include this in future versions.