gowut icon indicating copy to clipboard operation
gowut copied to clipboard

Go Web UI Toolkit - Public Releases and Development

Results 17 gowut issues
Sort by recently updated
recently updated
newest added

Am new for Golang and find this as an extraordinary product. We are planning to use Gowut for our product. Will you continue this further and provide more widgets (Datepicker...

Is there any plans to implement mutual authentication such that the gowut server can be configures to request or require client certificate?

enhancement

Code example: ``` this.gwuSvr = gwu.NewServer("guitest", "0.0.0.0:3434") this.gwuSvr.AddSessCreatorName("login", "Login Window") this.gwuSvr.AddSHandler(MySessHandler{this, nil}) this.gwuSvr.Start("login") ``` When Start is called, gowut opens a browser page to the ip and port that were...

enhancement

Hello There is no 'native' gowut way to upload a document. There are work-arounds that I have thought of, but they are not too elegant. Any chance a native file...

enhancement

For long running actions, it would be helpful to have a built-in way to disable components while their event is processed. For example, currently the user could press a button...

In server.go in serveHTTP there is a code: ``` if win == nil { // Invalid window name, render an error message with a link to the window list w.Header().Set("Content-Type",...

enhancement

Since file input mechanism is requested by many ([issues#9](https://github.com/icza/gowut/issues/9)), I made it. Now you can add an input box that accepts file path in the following manner. ``` win :=...

Hello, I get the above panic when I try and mark two things dirty at nearly the same time. I can fix the above myself by changing my program but...