glujs icon indicating copy to clipboard operation
glujs copied to clipboard

Specification-driven MVVM framework for building rich apps with Ext JS

Results 11 glujs issues
Sort by recently updated
recently updated
newest added

Added gridpanel as an xtype extension to grid

This line (and likely others) fails in ExtJS 6, because `doLayout` was deprecated in ExtJS 4.1: https://github.com/CoNarrative/glujs/blob/2229367a3e1d6dca3b8007ae4923442fbbc76f74/src/providers/sencha/items_helper.js#L142 See http://docs.sencha.com/extjs/5.1/5.1.1-apidocs/source/Container2.html#Ext-container-Container ``` /** * Manually force this container's layout to be recalculated....

Using GluJS with ExtJS 5+ is kinda hard when this line breaks right out of the gate: https://github.com/CoNarrative/glujs/blob/2229367a3e1d6dca3b8007ae4923442fbbc76f74/src/providers/sencha/setup.js#L6

This line fails in ExtJS 5+ https://github.com/CoNarrative/glujs/blob/2229367a3e1d6dca3b8007ae4923442fbbc76f74/src/providers/sencha/binder_adapter.js#L79

btw... This is the first time I've ever used git. I don't know what I'm doing. The code is solid though.

Action columns should bind the to handler automatically

Per the issue raised by Ryan in which the commented code triggers auto-observation the same as normal code

docs

For example: buttons: { text: '~~@{name}~~' } should bind the name property and then translate based on that bound variable. This way you could have types of controls that are...

enhancement

When you have something like: button: { value: { name: '@{name}' } } the passed object in the handler is: { name: '@{name}' } instead of the proper value that...

enhancement