I just wrote to <[email protected]> and received and answer right away.
Cheers
Type: Posts; User: Kurt001
I just wrote to <[email protected]> and received and answer right away.
Cheers
Did you find out how to activate IntelliJ?
Dear dtex-lab,
you are not comparing the same things in your fiddles.
https://fiddle.sencha.com/#view/editor&fiddle/2amp
this is more likely to be even with what you are doing in ExtJs 3.4
...
I tested firefox 57 with Windows 10 and it works fine.
Any extensions activated?
Here is a starting point:
Add this to the column:
cls:'x-fa fa-home',
Hi @tristan.lee
Here is a fiddle
18m8
1. load Data with the bottom button
2. power click on the left slot items (fast click 3-5 times on different numbers)
3. select the first item on the...
Hi there,
I have embedded a 'picker' inside a 'container' and I am changing pickerslot content on the fly.
When I add 4 data to the slot
- and I select the last
- and then scroll as further...
If you just need to save the data, you can always go with localStorage too.Still I do not understand why you would like to write this to a file and where the problem is.On the first run you can...
You would need to save a json file and grab that with an ajax call
url.json
{
"url": "myHomeUrl"
}
You could use
Ext.define('app.util.Config', {
singleton : true,
alternateClassName: 'app.Config',
config : {
baseUrl: 'http://website.com',
Hi there,
as for 2.4.1 this is still in there.
The solution is, that you need to set the config-icon
config: {
icon: null
}
Sounds like you implemented a folder "util" inside the "app" folder and you added a file Config.js inside.
Most likely this is a singleton.
Can you post the code of that file, so that we can help?
Are you sure this is save without
constructor: function (config) {
this.initConfig(config);
},
I still cannot figure out how and where to use the element.up('').
The closest I am getting to is to ...
* go up the dom structure
* find the x-list-item class (which is the simplelistitem)...
Can you help me with e.up('').
I know element.up() if element is a sencha element. But in this case the delegate function will return the event and the html snippet.
None of them seems to have...
The screen is so tiny, that I cannot tell, where the arrows are pointing at.
Do you simply need an overlay of the fullscreen? Simply add a centered modal with top=left=right=bottom=0; or height &...
Your answer is here:http://stackoverflow.com/questions/26489095/sencha-templates-tpl-with-special-conditions-hidden-or-not-hidden
I am doing almost the same as Mitchel, but I am not using a singleton here, because the values are usually statics:
Code:
Ext.define('MyApp.util.Config', {
alternativeClassName:...
You are here at the Sencha Touch forum. Please move this thread to architect.In sencha touch you would need to set up a project (cmd - sencha generate app). With that you will get a bootstrap.json at...
Hi there,
is it possible to do event delegation on a list and forward the record of the list-item?
So far I have the following code
{
xtype: 'list',
I know this is an old post, but in case you are coming here for an answer, please look here:
data = options.data || options.rawData || options.binaryData || options.xmlData ||...
Ext.Component is a class, that gets instantiated (supporting lazy) with config and is being handled by ST.
So if I destroy a view, the component inside is destroyed.
But my class is not supposed...
Why not only use one large file and depending on the css you want to use add a new cls to the Viewport.e.g.
Ext.Viewport.addCls('custom-1');
and in the SASS file
.custom-1 {
Take a look at the structure of the spinner and simply add the divs with the same classes to your tpl.
Combine this with if...else and you can hide or show a spinner based on a record key.
Drop...
Hi there,
I would like to create a class with all the pros an Ext.Component gives me.
But I do not need a visual appearance.
So I thought I could use AbstractComponent, but it gives me the...