haxeui-core icon indicating copy to clipboard operation
haxeui-core copied to clipboard

The core library of the HaxeUI framework

Results 114 haxeui-core issues
Sort by recently updated
recently updated
newest added

I have a text area that I would like to save data when the field loses focus. Its element.onblur event doesnt appear to work. So I tried this.registerEvent(FocusEvent.FOCUS_OUT, (e) ->...

HTML5 backend at least. Having some weirdness in textareas with auto wrapping https://www.haxeui.org/builder/?kygroe The first textarea I copy and paste "z z z z z". I then try and paste...

Similar to #416 Move slider to one side or the other. the textarea tries to resize to match and when the width of textarea is less than the width of...

It is quite logical to expect TableView to treat its contents as individual cells rather than rows. It may not be a default behaviour (that needs to be discussed separately),...

Since updating to the latest version of haxeui-core and haxeui-openfl my tableviews that have checkboxes per row no longer display any text for the other components. This is not due...

Reading ItemRenderer code, it would try to assign the data source's given field value to the ItemRenderer's corresponding-id-d Component's `value` field. So I thought, if my custom component stores its...

Hello! I came to see HaxeUI just now, after being spoiled by reactive frameworks for HTML (specifically Vue, but similar are React, Purescript-Halogen etc). It seems my expectations vs reality...

I'm using the lastest git version of haxeui through openfl test html5. The issue is that the last line of a multiline label won’t get displayed. It does increase the...

The Dialog base is ``` public override function validateComponentLayout():Bool { var b = super.validateComponentLayout(); dialogTitle.width = this.layout.innerWidth; if (_autoSizeDialog == false) { var offset = this.layout.paddingLeft + this.layout.paddingRight; if (dialogContent.width...