Selective excel import columns

2017-04-12 Thread L Eder
Hi members: I have a sheet that includes the months of year as columns. I would like to import only a range of those columns, rather all at once. Anyone could point me as to do that using the excel isis module? Thanks, Eder

Re: Using the restful interface with view models

2017-04-12 Thread Dan Haywood
That architecture probably would work, but I'm just wondering if it might be less work overall enhancing the current RO viewer to teach it how to handle XML payloads. In DomainObjectResourceServerSide (and similarly DomainServiceResourceServiceSide) there are the JAX-RS endpoints that process the

Re: Using the restful interface with view models

2017-04-12 Thread Erik de Hair
Hi Dan, Thanks for your help. I'm not sure about the architecture. Would the following architecture do the trick: - write my own xml web service, accepting xml complying to the view model's xsd - use the jaxb service to unmarshall the input to a domain entity - use the wrapperfactory to wrap t

Re: Using the restful interface with view models

2017-04-12 Thread Dan Haywood
Hi Erik, sorry not to reply sooner. I'm afraid that serializing objects in this fashion isn't possible in the RO viewer. The best/only workaround I can give you right now is to define the property as a string and then to send the JSON as a string and deserialize within the receiving action: pub

Re: Using the restful interface with view models

2017-04-12 Thread Erik de Hair
Anyone? I can do this writing my own service class but I would like to use Apache Isis' error handling etc. Erik On 04/10/2017 05:44 PM, Erik de Hair wrote: Still figuring some things out... Is it possible to expose some service method using the RO viewer with complex type parameters like b