bright-gpu-74537
08/18/2022, 6:12 PM_tableview.dataSource.sortCustom
rather than _tableview.dataSource.sort
otherwise you are just gonna have the same issuepurple-businessperson-14467
08/18/2022, 6:12 PMbright-gpu-74537
08/18/2022, 6:21 PMbright-gpu-74537
08/18/2022, 6:21 PMxml
<module>
<components>
<class package="." />
</components>
</module>
bright-gpu-74537
08/18/2022, 6:21 PMfull-branch-26766
08/18/2022, 6:45 PMhaxe
var mainView:Component = ComponentMacros.buildComponent("assets/main-view.xml");
Screen.instance.addComponent(mainView);
full-branch-26766
08/18/2022, 6:46 PMbright-gpu-74537
08/18/2022, 7:02 PMfull-branch-26766
08/18/2022, 7:03 PMhaxe
import h3d.Vector;
import haxe.ui.Toolkit;
import h2d.Scene;
import haxe.ui.*;
import haxe.ui.macros.ComponentMacros;
import haxe.ui.core.Component;
import haxe.ui.core.Screen;
class Main extends hxd.App {
override function init() {
Toolkit.init();
this.engine.backgroundColor = 0xFFFFFF;
var tf = new h2d.Text(hxd.res.DefaultFont.get(), s2d);
tf.text = "Hello Hashlink !";
tf.textColor = 0x000000;
var mainView:Component = ComponentMacros.buildComponent("assets/main-view.xml");
Screen.instance.addComponent(mainView);
}
static function main() {
new Main();
}
}
full-branch-26766
08/18/2022, 7:03 PMbright-gpu-74537
08/18/2022, 7:05 PMhaxe
Toolkit.init({root: s2d});
full-branch-26766
08/18/2022, 7:06 PMbright-gpu-74537
08/18/2022, 7:06 PMfull-branch-26766
08/18/2022, 8:00 PMhaxe
<tabview id="tv1" width="100%" height="100%" styleName="full-width-buttons">
not work in heaps? when i paste my xml into the playground on the website it behaves correctly but not on heapsfull-branch-26766
08/18/2022, 8:01 PMfull-branch-26766
08/18/2022, 8:07 PM<vbox width="100%" height="100%">
<style>
.button {
font-size: 24px;
}
</style>
<splitter width="100%" height="100%">
<hbox width="30%" height="100%">
<tabview id="tv1" width="100%" height="100%" styleName="full-width-buttons">
<box text="setting" >
<button text="Page 1" />
</box>
<box text="attributes" >
<button text="Page 2" />
</box>
<box text="export">
<button text="Page 3" />
</box>
</tabview>
</hbox>
<absolute id="graphContainter" width="100%" height="100%"/>
</splitter>
</vbox>
ambitious-knife-25690
08/18/2022, 8:29 PMbright-gpu-74537
08/18/2022, 8:46 PMfull-branch-26766
08/18/2022, 9:10 PMbright-gpu-74537
08/18/2022, 9:20 PMfull-width-buttons
variant was added pretty recently, well, certainly after the haxelib release, which is about 6 months old now... i keep saying it every weekend, but i WILL release 1.5 to haxelib this weekend (its the write up i cant be arsed with 😄 )full-branch-26766
08/18/2022, 9:25 PMbright-gpu-74537
08/18/2022, 9:28 PMfull-branch-26766
08/18/2022, 9:28 PMbright-gpu-74537
08/18/2022, 9:29 PMfull-branch-26766
08/18/2022, 9:44 PMbright-gpu-74537
08/18/2022, 9:45 PMfull-branch-26766
08/18/2022, 9:46 PMbright-gpu-74537
08/18/2022, 9:46 PMfull-branch-26766
08/18/2022, 9:46 PMC:\HaxeToolkit\haxe\lib\haxeui-heaps/git/haxe/ui/backend/TextInputImpl.hx:16: characters 19-28 : h2d.TextInput has no field lineBreak
bright-gpu-74537
08/18/2022, 9:47 PM