gwt-material-addins icon indicating copy to clipboard operation
gwt-material-addins copied to clipboard

Custom Components for gwt-material.

Results 76 gwt-material-addins issues
Sort by recently updated
recently updated
newest added

touchsplitter.js throws standard `dragstart` *non-standard* `dragstop` event every time its splitters are dragged around. Since `dragstart` is standard event, there are already support for event handlers via `MaterialWidget.addDragStartHandler`. However, `dragstop`...

enhancement
discussion
waiting for PR

Null can be a valid value and should not be ignored.

Is there any interest in having null as an acceptable value in a combo box. I find this is needed in order: - Not have an initial value selected (the...

enhancement
discussion
waiting for PR

MaterialFileUploader : use the elemental2 XMLHttpRequest instead of manually built JsInteroped one #245

I declare the uploader in ui.xml file : `` and when i set the url in java code. nothing happen , the widget use the first URL.

when i set the name of file in method addAddedFilHandler, nothing change : ``` cardUploader.addAddedFileHandler( new AddedFileHandler() { @Override public void onAddedFile( AddedFileEvent event ) { event.getTarget().setName( "youpipipi" ); }...

When adding file uploader to the page like follow: ``` @Inject @DataField private MaterialPanel fileUploaderInput; private void initializeFileUploader() { MaterialFileUploader fileUploader = new MaterialFileUploader(); fileUploader.setPreview(false); fileUploader.setUrl("/aaaa"); MaterialUploadLabel uploadLabel = new...

> When the setValue is called the setSelectedIndex is set > > ![image](https://cloud.githubusercontent.com/assets/26303578/25939094/eeb36a34-3631-11e7-800e-6be056067bb8.png) > > ,but getSelectedIndex does not return the set variable but reads the html instead. > >...

bug