Hi,
You can give below styles to your textarea -
white-space: nowrap;
Type: Posts; User: praveensaini23
Hi,
You can give below styles to your textarea -
white-space: nowrap;
From the documentation, seems like it only includes modern toolkit.
Hi,
You can return that filter object from a function and call that function many time you want for different columns.
Check the solution in the fiddle -...
updated fiddle -
https://fiddle.sencha.com/#view/editor&fiddle/33tm
it seems working fine with remote store as well.
I changed the store to remote in below fiddle -
https://fiddle.sencha.com/#view/editor&fiddle/33tl
but your original problem is not related with local/remote store. Can you reproduce that...
Hi,
You can checkcreateFileInput() https://docs.sencha.com/extjs/7.1.0/classic/src/FileButton.js.html file.
Eventually you can do this like - ...
Hi,
As far as I can see is you are maximize function of window class and you handled maximize event as well where you are trying to set window size. So the default behavior of window's maximize...
Hi ddiguru ,
Seems like in modern toolkit, somehow the html is broken. If this problem is not solved yet, Can you provide source code of that modern toolkit combo with the data for which its not...
Hi Marc,
While creating cell widgets for columns, extjs is injecting ownerCmp to the widget itself. You can see createCell function definition in below url -...
Hi siggi,
If you want to perform some action on application level, you can use GlobalEvents provided by ExtJS.
you can fire event like below syntax -
Ext.GlobalEvents.fireEvent('{eventname}',...
can you provide fiddle for your scenario ?
Hi sveins12,
I tried to debug the behavior and found that you were right. In 6.7.x while doing mouse scroll up, then the value is decreased rather than decreasing.
This is probably a bug for...
Hi Xermit,
You can also use rowbody to show the details for selected row. By default you can give hidden style to rowbody and with x-grid-selected class you can make gridbody as visible.
So that...
Hi Tomdchi,
By seeing your error logs, I am guessing that those errors are coming after the grid actions like sorting, cellediting start etc.
So the problem might be with your grid editor(if you...
Hi sveins12,
I checked the numberfield behavior in ExtJS 6.5.0 & ExtJS 6.7.0 Classic toolkit, there is no difference in spinner up/down button clicks. If I click up button, it increase the value,...
Hi @Egon H,
I have done small changes in your fiddle to make it work with less effort.
Fiddle - https://fiddle.sencha.com/#view/editor&fiddle/308k
Hope that resolve you problem, cheers!
Hi,
That's the expected behavior of checkbox group's setValue(). If you check the documentation here -
https://docs.sencha.com/extjs/7.0.0/classic/Ext.form.CheckboxGroup.html#method-setValue
...
Do you have URL re-writing in your project ?
If thats the case, it might be broken because of that, so you might need to add rule for that as well...
I am writing code manually by hand, not using auto code generation tool. I am using visual studio code editor.
Hi,
There are 2 changes you need to do in above code:
1. The store you gave above is you are defining(not instantiating, means not creating object), also you don't need to override constructor...
You can find the clicked tree node, it will return you the model where you can change the text so it will also update the text in the tree node. It will be something like below, I am changing text of...
Hi,
You can add custom class to the click menu item like given in below fiddle -
https://fiddle.sencha.com/#view/editor&fiddle/2vo3
If you want to remove the class on tab-change, rather than...
Hi,
Just went through your code and realize that the problem is with your store declaration. I tried to make your code work in the below fiddle - ...
Can you provide a fiddle for your code ?
Seems like store is not able to read the data correctly, have you defined proxy correctly in store with root config, if you provide the code, it will be...
Hi,
If you see source code of onBeforeLaunch() function, app update is fired at the end of the function. So what you can try is you can override this onBeforeLaunch function of Ext.app.Application...