Mariano Montone

Results 171 comments of Mariano Montone

I think you may be able to mix both cl-who and spinneret,though. If both libraries write to the same output stream..

I have an example of using cl-who renderer and spinneret at the same time: ```lisp (forms:defform my-form () ((input :string))) (let ((form (forms:get-form 'my-form))) (with-output-to-string (*html*) (spinneret:with-html (let ((cl-forms.who:*html* *html*)...

Not ideal, but you can return NIL to prevent Spinneret from rendering that last form tag: ```lisp (let ((form (forms::find-form 'create-agent))) (with-output-to-string (*html*) (let ((forms.who:*html* *html*) (spinneret:*html* *html*)) (spinneret:with-html (:doctype)...

Ok. Thanks. I'll see what I do.

> Also, I'm looking for a lambda expression with ignorable arguments support. Like `(lambda (_ x) ...)` . Does CIEL or some other package you know implement that? I've implemented...

> This is cool, and it would definitely help with onboarding new users. Have you made any more progress on it? I haven't looked at this since I created it...

Hi. I have only implemented validation per field, although I think I should also have implemented per whole form, so that validation between fields can be achieved. I think in...

> If not how can I add the extra validation messages for these? To add your own validation message follow `forms:validate-form` implementation in your custom validation function: "Validates a form....

Ah. I forgot about `add-form-error`. That's good use. I will think about an implementation for custom form validations.

> there's a well-developed bootstrap library, https://code.metalisp.dev/marcuskammer/dev.metalisp.sbt. > > i wonder if it is possible to combine cl-forms with it? everything is possible 😛 > > i have an existing...