Trigger are not rendering properly in tabpanel extjs3.4 - triggers

This problem is only in IE. The triggers in Tab1 are getting rendered after Tab2 is rendered. This is only for IE, it is working fine in firefox
I am having a Tabpanel in which there are two tabs are there let say tab1 and tab2.
In Tab1 there is a tool bar in centre region of two regions(west, centre). For the tool bar i am adding the triggers with the width 150 each and tab2 is having its panel without triggers or tool bar.
Now my problem is when i place Tab1 is active the trigger is rendering perfectly but if i place the Tab2 as active directly after starting the application the trigger in the Tab1 is not rendering properly.
The trigger is rendering like that it's width is 0.

Related

hide all tabs pickers on opening a subPage rather than just the parents tabs

We have this design for our Ionic app
This is made by our main page having a tabs component displayed at the top and the schedule page having a tabs component with buttons displayed at the bottom.
When a user clicks on one of the cards (that’s in the page scheduleActivities) it does a function which does
this.navController.push(‘InformationPage’);
tabsHideOnSubPages boolean has been set on all places as well as on each tab element and behaves normally for most cases in the application.
However in this case, the tabs bar in the parent hides correctly (the tabs at the top), but the tabs bar in the parents parent (the one at the bottom that is rendered the home screen) does not.
Is it possible to change the behaviour to hide all tabs pickers, on opening a subPage rather than just the parents tabs.
Initially raised on the Ionic forums here - https://forum.ionicframework.com/t/possible-issue-with-tabshideonsubpages/122681?u=jamesnurse

How to show a popup inside a scrollPane javafx

I have some nodes in the content of a scrollPane.
With nodes mouse pressing , a popup is shown and is positioned in the required X and Y.
Well , when scrolling , the popup is always fixed , as it is positioned according to the scene.
Is it possible to show the popup inside the scrollPane , so when scrolling , the popup scrolls too .
Yes, it is possible for the pop-up location to track the scroll position of the scroll pane. I am not going to write the code for that here.
One consideration you will have is what to do with the pop-up if the user scrolls such that the pop-up ends up outside the visible region of the scroll pane (I'm guessing the pop-up would then be hidden and cease tracking the scroll pane location).
Do consider your design and decide if you really need a pop-up or not, or if you can just place a node in the group that maintains the content for the scroll pane. Because, if you did that rather than using a pop-up, then the scroll pane would automatically scroll the node in the group as it scrolled around the group.

How to avoid the white space which appears while switching between tabs in ionic?

I am working on a project based on Ionic. I have a page consisting of three tabs.
When I switch between the tabs there is a white blank screen appears for a short period of time, but it looks like the whole page is getting refreshed.What I want to achieve is that the tabs should remain as it is. It should not look like tab gets disappears and then appears.only the content should change.
Any help will be appreciated.
you have to use show hide functionality. in your design three tabs are there right. so in your application create one main div and in that div put your three tab and inside your controller buy-default tab1 data show on load tab2 and tab3 div make hide. and if you click on tab2 then hide data tab1 and tab3. you do not change your whole page only data show hide. its faster and all header footer data as it is. and if you have any confusing then tell me.

GWT Layout Changing issues when using back button with PlaceHistoryMapper

Is anybody else running into this - i can't seem to find any information on it and it's not consistent
we're running into a bug in GWT (using places/activities and a place history mapper) - occasionally when pressing the back button the entire layout gets shifted to the left
i have a docklayout panel as my main panel - it's center panel is the content panel and the left side of it is the navigation panel (similar to the GWT showcase), occasionally it will happen where the navigation panel stays fine but the entire content panel is shifted to the left (with cell tables and data grids, it pushes into the navigation panel and we can't read half the data)
any input is greatly appreciated

How to refresh a TableViewer in Eclipse RCP Application

I’m using JFace viewer Framework in my eclipse rcp application, I’ve created a Table Viewer, which populates some data .My view has a refresh button below tableviewer, when I select a row in tableviewer and trigger refresh button the selected row still appears in gray color.
Scenario is depicted below
Before selecting a row
After selecting a row
After refresh
In what way can i remove the gray background as in the above figure and make it as 1st image.
My refresh button listener code is simple which has
viewer.refresh();
as a workaround i tried implementing methods like
viewer.getTable().redraw();
viewer.getTable().setRedraw(true);
which doesn't work, is there a solution to refresh it or should I refresh the view totally
Note: My Execution environment is windows xp
That gray line is current, not previous selection. It's gray because table is not in focus. Use setSelection(StructuredSelection.EMPTY).
If you create the table with the style flag SWT.HIDE_SELECTION the table will not show its selection when it loses focus. I.e. it will look like your first image.