Sencha has released an example application based on my connector and provides the implementation that is using the latest version of Ext JS 6.5
Here is the link:...
Type: Posts; User: Stju
Sencha has released an example application based on my connector and provides the implementation that is using the latest version of Ext JS 6.5
Here is the link:...
Please refer to updated examples: https://github.com/jurisv/extdirect.examples
This post explains undefined body:...
@squalo
A little bit late response but it might help others.
The problem you were observing is du to the fact that Express framework changed the way how the middleware is being included, thus you...
Hello!
From what I see here, there are multiple moving parts. I will try to answer all/most of them.
* There is no built in feature in Architect to trace network requests/responses, but once...
ExtJs 5 currently does not support phones.
http://www.sencha.com/products/extjs/details
For 4.2.x
var cellEditing = new Ext.grid.plugin.CellEditing({
clicksToEdit: 2,
/**
* preventSlection {Boolean} Setting to true will prevent selection of current record
...
As the question was really vague, here is the code to get checkboxes on tree component.
var store = Ext.create('Ext.data.TreeStore', {
root: {
expanded: true,
children: [...
There is an updated example provided in repository : https://github.com/jurisv/extdirect.examples/tree/master/client/DemoExt5
http://docs.phonegap.com/en/3.3.0/config_ref_images.md.html#Icons%20and%20Splash%20Screens
This is fixed as part of upcoming 4.2.3 release
Yes, this is the correct way.
Compare with the example from docs:
http://docs.sencha.com/touch/2-0/#!/api/Ext.data.Model
Ext.define('Ext.util.NumbersToWords',{
singleton:true,
ones:[
'',
'one',
'two',
'three',
'four',
'five',
May you create a test case, please?
Ok, tried, it failed.
So you need to comment out line 76 in app.json file stating: "resources/images",
then it builds and runs correctly.
I created my own test app using proxy and, yes, no build issues at all.
Found a bug:
Add new person, click to edit, rename to something else, tap save. data is updated in db, but List is not synced.
No, it does not require jQuery.
Problem: I want to use checkboxSelectionModel on dragDrop enabled grid, but can't uncheck checkbox after row is selected.
Solution: use overrides provided.
// Override for situation,...
Fix :
Ext.override(Ext.ux.grid.menu.ListMenu,{
show : function () {
var lastArgs = null;
return function(){
if(!arguments){
...
Hi!
This can be solved by fixing show method:
Ext.override(Ext.ux.grid.menu.ListMenu,{
show : function () {
var lastArgs = null;
return function(){
...
There is no version 4.7 yet. Probably You meant 4.0.7
Please provide complete test case, as with provided code above and Extjs 4.0.7 overflow is shown in proper place.
Resolved.
Version 4.0.7 works as expected!
Testing against latest 4.1 beta, for me it looks like fixed.
BUMP!
Any update on this?
alert: function(txt, cb, s) {
var tr = this.editor.getLang(txt, 0);
var msg = tr == '' ? txt : tr;
...