I don't know if anyone need it anymore but I had the same problem in Ext-6.6 and I build the follwing solution.
Ext.define('Override.grid.column.Column', {
override:...
Type: Posts; User: Snaker
I don't know if anyone need it anymore but I had the same problem in Ext-6.6 and I build the follwing solution.
Ext.define('Override.grid.column.Column', {
override:...
Same Error with Number Fields and same Solution
Hello
if I bind an referenced Model for example the address model as field in person model the set of the button value is working but if I change the Button value by click on an other button in...
Hello together,
I wanted to build a solution for binding Models with association Model via ViewModel.
I get it work but I need to write an overwrite for Ext.data.Model.
The Problem is that...
Ok you are right andyou can call me an for this fail.
BUT...
I need your solution in a container and that do not seem to run.
I wrote a exmple ...
...
Hello evant,
thanks for your response. qour solution looks good, but the loading spinner are hidden before the last store is loaded in your example.
Thank you for your help
Ok I think it is not what I need, my Question is:
how can I set the "id: 100" dynamic by a variable?
Hi,
I am new to ViewModels with bind and I have some questions.
How to set a ID to a link for remoteLoad?
At the moment I define a link in the ViewModel with create: true and in the Controller...
Hi,
in my case I have detail page of a person. This page have a own ViewModel with 3 Models/Stores (remoteLoad: true).
I want to have a loading spinner in the Component until all ViewModel...
Hi,
I am new to Ext ViewModel and binding.
After long reading, testing and searching I am at a point for help.
I try to bind a store an value to a combo. The store and value are set in a...
Hello,
in our case we have the Problem that we get all date values as unix timestamp.
If i set this values to a Date/Time field it displays it in the local Timezone.
But we need to display the...
A test with following code results in the same Problem.
Ext.override(Ext.window.Window, {
modal: true
});
Until Preview Version (4.2.3) it works fine
Ext version tested:
Ext 4.2.5
Browser versions tested against:
Chrome
Description:
First I defined a new class and extend the Ext.window.Window with modal: true.
After create a Window...
I think that do not fix my problem.
My problem is not that esc do not work.
My problem is that after open second window (via button) and press esc key the first window close.
Problem still not...
No I am sorry it do not work.
Here is a litle testcase:
Ext.onReady(function(){
var win1 = Ext.create('widget.window', {
height: 400,
width: 400,
Temp Fix:
Ext4.override(Ext4.window.Window, {
onEsc: function(k, e) {},
I have a modal window which open an other modal window. On press ESC the first window in the back close and not the Window in front.
Notice: I use the sandbox
Next one...
if i have a scrolling page the modal have the height of view. That have the result that if I scroll down the modal ends in middle of page and the rest of page is free to use (like...
OK solution update ;)
with following code it works in ie6-9 too and is a little bit smarter too.
Ext4.override(Ext4.ZIndexManager, {
_showModalMask: function(comp) {
var zIndex...
This fix works for temp ...
if (comp.isXType('loadmask')) {
zIndex = zIndex + 3;
}
but i do not happy with this solutuion
Thanks,
for issue number two i have a fix which is not nice but it works for the moment.
I add
if (comp.isXType('gridpanel')) {
zIndex + 4;
}
First Error found ...
In Ext-4.0.2 the modal was bind direct to the body. This changed and it now binds to parent el.
Thats still ok but in the sandbox are one more element. All Components have a...
If I open a window with modal in ext-4.0.5 sandbox mode the calculation of the window mask height and top are wrong. In ext-4.0.2 it works.
ext-4.0.6 too
There are much more css classes wrong.
It seems that the class .x4-reset are wrong ordert with any cls which are declaration before.
The following cls are in trouble:
- x4-strict
- x4-body ...
Hi,
there is a very big mistake in the ext-sandbox.css (version 4.0.2a) all ie6 and ie9 cls are wrong.
Classes are created like ".x4-reset .x4-nbr" OR ".x4-reset .x4-nlg" do not match.
The...