If it's just regular text you want to display, you can use a component and set the HTML to the text you want it to be. It doesn't have to contain HTML:
{
xtype: 'component',
html:...
Type: Posts; User: milanz
If it's just regular text you want to display, you can use a component and set the HTML to the text you want it to be. It doesn't have to contain HTML:
{
xtype: 'component',
html:...
+1 on autoLoadOnValue. Works perfect with a remote store.
Topic is old, but hopefully this helps someone in the future. In my experience the best way to troubleshoot this, is to do a "sencha app build testing". Open the testing build and view the browser...
Excellent.This works! I don't do a lot of fashion, but when I do, it'll use a proxy from now on!
It's been a while, but I think my original request was a result of needing to run the VS application (F5) since the application needs access to Ext.Direct methods residing on the web server for the...
Bump? Can someone from the team confirm this?
Seem that when you specify the store using an alias, the proxy information is lost. I made a simple example:
https://fiddle.sencha.com/#view/editor&fiddle/1kho
Ext.application({
name:...
What was the cause?
Is there a way to do the following within Visual Studio plugin?
sencha app watch -fashion -inspector
If not I would like to see this implemented, so when you run your application and modify...
In the first example, the mixin is specified as a string literal:
http://docs.sencha.com/extjs/6.2.0/modern/Ext.mixin.Mashup.html
But this results in:
ext-all-debug.js:12097 Uncaught TypeError:...
If you create an ExtJS Workspace or Application (universal) using Visual Studio 2015 . Running the solution will automatically cause an exception when launching the ExtJS App because Ext wants to...
Actually I ended up having some issues with implementing this control as a grid cell editor. I've never implemented a custom picker before so I didn't really understand the root of the problem and I...
I think that's the only thing I modified with your version. But today I noticed that adding the control as an editor control on a grid column was not updating the cell value as expected - but I...
I completely understand your point of view. But I think that populating a date object with a date and time is so fundamental that I am certain that, if Sencha implemented a date control with a time...
Thanks for sharing your fixes. I had a couple small issues with the code though. Here is the fiddle with fixes: https://fiddle.sencha.com/#fiddle/1cl2
I am disappointed that we have to go through...
Sorry about that. I got sucked into an urgent project to implement a payment gateway this weekend. It will probably be faster to just call me and we can discuss it instead of writing up long threads....
I wanted to give you a good answer, but all of the sudden a really slow day turned into a really crazy day. I'll try to respond back later this evening. Sorry about that.
Im just out to lunch... but i think i have a solution for you. Give me an hour. ;-)
Here are your options as I see them.
1) First of all I would ask whether you are loading the nodes on demand or if you are loading the entire hierarchy on initial load? If you are not loading the...
I've been implementing the Portal example located here:
http://dev.sencha.com/deploy/ext-4.0.7-gpl/examples/portal/portal.html
I have been trying to figure out what the purpose of the classes.js...
I know this is old, but it still might help someone using Ext4. In the portal.js example just add a method like this and call it from a button or something:
addPanel : function()
{
...
Confirmed. Check out the examples page and type in gibberish that returns no results for another example:
http://dev.sencha.com/deploy/ext-4.0.2a/examples/form/forum-search.html
That's the thing about ExtJS. It expects you to use its layout managers which handle the scrolling issues for you. So therefore I don't really think it's a bug. But I have had cases where I wanted to...
I have searched the forum and haven't found anyone else reporting this bug, so here we go:
How to reproduce:
Ext.widget('window', {
modal: true,
height: 400,
width: 400, ...
You just saved me a whole load of time.
I was also trying to get it to work, thinking I'll just create a method stub (not thinking to add any arguments to the method). Added an argument to the...