bokunodev

Results 39 comments of bokunodev

seamless integration with [go-restful](https://github.com/emicklei/go-restful) would be awesome!

the implementation is really straight forward, i think. since go-restful expose `Request` and `ResponseWriter` from `net/http`. integration with [go-restful](https://github.com/emicklei/go-restful) could be implemented as an adapter. httpin-go-restful-adapter i can work on...

hi, sorry for not submitting the pr as promised. i got a little bit busy. my original solution was basically to call `engine.Decode` inside `route.FilterFunction` and make use of request...

you could listen on `cellClick` event. the callback definition is in here https://github.com/grid-js/gridjs/blob/5fae726edb4471f517115bc377507e7b56453be4/src/view/table/events.ts#L6

@vicentematus you can put html inside the cell. [its on the documentation.](https://gridjs.io/docs/examples/html-header-cells/)

the data race seems tobe happen in `client.onconnect` callback. i stumbled upon this issue when debugging `emitter-io/go` and the data race only happen when i use onConnect.

i think this should be in the openapi repo. but i'm not sure.

i found the problem, it generate only one definition when two types has the same package name but different import path. main.go ```go package main import ( "io" "net/http" "net/http/httptest"...

`restful.WebService` as `.TypeNameHandler` method. but the handler only invoked for sample passed to`.Reads` and not `.Returns` and it only change type name in the ref and not the definition. i...