Hi Ivan,
It looks like "fotos" is not a parameter of the action that you are trying
to invoke. What is the declaration of the action in the domain class (ie
the java code)? And what does the REST API show in the prompt page for
this action - that should indicate the name of the parameters to be
populated (section 19 of the spec).
Also, the value that you have specified there for the blob is incorrect.
Here's the algorithm:
private static String toBlobEncoded(final Blob blob) {
final String bytesEncoded =
Base64.getEncoder().encodeToString(blob.getBytes()); return
String.format("%s:%s:%s", blob.getName(),
blob.getMimeType().toString(), bytesEncoded); }
Hope that helps
Dan
On Wed, 17 Mar 2021 at 12:03, Ivan Alberto Palomeque <[email protected]>
wrote:
>
>
> On 2021/03/15 08:34:12, Dan Haywood <[email protected]> wrote:
> > You can use either TableColumnOrderService, or hide using CSS in
> > application.css file.
> >
> > NB: for future questions, please send either to users@ (rather than dev@
> )
> > and subscribe first. Alternatively you can ask on our slack channel.
> >
> > Thx
> > Dan.
> >
> > On Sun, 14 Mar 2021, 20:52 Ivan Alberto Palomeque, <
> [email protected]>
> > wrote:
> >
> > > hi team,
> > > Sorry for the inconvenience, I will comment to you, I am developing my
> > > final degree project implementing this framework in its version 1.17,
> which
> > > is the one they tell us to use. My question is the following:
> > > I am showing a list with several attributes including images, but
> > > according to some previous answers for the load to work better we have
> to
> > > change to version 2.0. Since we cannot do this we need to remove or
> hide
> > > the column where the image is displayed so that when listing it does
> not
> > > present an error. How could I do?
> > > I put an example
> > >
> > >
> https://media.discordapp.net/attachments/714621577383116810/820387020962398330/unknown.png
> > > In the image above there is a list of Checklist the idea is to hide or
> > > remove the column of photos.
> > >
> >
> Hi dan
> how are you? sorry for the inconvenience? I'm having a problem in swagger
> when making a post, it takes me that the no such parameter when uploading
> an image in blob format.
> What can be?
> i attach a pic
>
> https://media.discordapp.net/attachments/714621577383116810/821574220504367154/unknown.png
> best regards!!
>