Jump to content

TMenu Freezing


herculanojs

Recommended Posts

I have a strange behavior with TUniMenuItem after update to version 1.10.0.1464. It is frozen while the rest of the application continues to run.
 
I have tried to debug some process running, but there is nothing. Just lock the menu
 
Any suggestion
 

 

post-1670-0-03126500-1528161025_thumb.jpg

Link to comment
Share on other sites

I was using version 1425 and yesterday updated to the latest version 1464.

What is happening is that at any given time if you click on a menu it does not open the menus. If it clicks again it opens but the items are frozen and do not close again in any way, just resetting the session.

Link to comment
Share on other sites

Open calling next to the cradle

 

there is a sample project in which the mentioned error occurs.

 

There is a memo in the main project form that describes the steps to be performed to reproduce the error.

 

To reproduce the problem follow the steps:

 

1) click the Open form button 1

2) In the open form click on Open Form 2

3) Close of form 2

4) Click on MenuItems

Project1.zip

Link to comment
Share on other sites

Sherzod commented:

 

It seems this is a bug of ExtJS

 

Try this approach for now:

MainForm -> Script:

Add this:

 

Ext.override(Ext.ZIndexManager, {
onCollectionSort: function() {
var zIndex = this.callParent();
if(!this.front && this.topMost)
this.front = this.topMost;
return zIndex;
}
});

 

 

 

Tanks Sherzod 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...