qtip2,when I scroll modal but tips not follow modal - qtip2

enter image description here
qtip2,when I scroll modal but tips not follow modal

Related

Navigation in Xamarin.Form from masterdetail page

I am new to Xamarin and want to develop an Xamarin.Form Portable App.For that, I have created the project template as Xamarin.Form Portable.
After login, I have successfully created a Master Detail Page to display the Menu List like Home, AboutUs, ContactUs links in the left corner which is initially hide and when i click on the Menu Icon (Menu Icon is like three dashes(-) in parallel) all Menu List is populated to the right side in window. Now when i click on any Menu Item,I don't want to repeat the menu list or its icon in the inner pages. Instead of that, I want Navigation back arrow button instead of the Menu Icon. When I tried to navigate it like below it gives me error like "PushAsync is not supported globally on iOS/Android, please use a NavigationPage"
await Navigation.PushAsync(new AboutUs());
If instead of this, I navigate it to the master detail page and set the About Us page as Detail property of the Master Detail Page then Menu Icon and Menu list will be reapeated which i don't want. Please help me how can i show the navigate the page with Back Arrow button in inner pages.
Overall, I want functionality like in Gmail where when we open any Detail of Email Menu button is not there but the back arrow button is there.
Thanks in advance!
Try this approach(Because DetailPage must be NavigationPage in Xamarin.Forms):
await Navigation.PushAsync(new NavigationPage(new AboutUs()));

Button on Popup form with few more user defined fields

When I cilck on a button on main toolbar, I am displaying a popup form (PXSmartPanel) with few fields on it. Whenever I click on the main toolbar button, I want first the control should go to the popup form and based on buttons on popup form (Ok/Cancel), it should perform the action.
However, I tried that but eventually when I click on button on main toolbar, it first executes the code behind for that button and then shows popup.
Any suggestions?
Found the solution. You can use AskExt method of your DAC class to show popup first and then execute your code.
You can also use px:PXSmartPanel with AskExt. With help of PXSmartPanel you can customize your screen, and even add some buttons to your pop up. Here I wrote "short" manual how to do it.

Using Chrome Extension contextMenu, how to open a small view right next to the context menu on click?

This question has a couple bits to it. Basically I want to make the context menu behave like a sidebar that pops out a box with html.
Get the height and location of a users context menu?
Open an interactable html view next to the menu without closing the menu?
Close both the menu and popout on off-click.
So a user can right click on the page,
and then click the contextMenu item to open a page that can hold html

tooltip shown with page load / popup position under chrome extension icon

I am creating a browser action chrome extension - the user need to press a button.
I want that with any page load a tool tip will appear on the icon telling the user what he can do by pressing the button.
Can I show a tooltip with any page load? or - I thought I can open a popup that explains the icon with content script - the question is how can I place this popup near the icon - can i some how know the position of the icon?
Thank you!

In Robotium, Click on QuickAction icons

Can any body tell that me how to click on the quick action icon [ buttons visible on screen with icon only- and without text labels ] in robotium. I need to automate some test cases, But i am not able automate that how to click on the quick action icon.
Thank You,
Manju
click on first Quick icon - solo.clickOnImageButton(0); OR solo.clickOnImage(0);
click on second Quick icon - solo.clickOnImageButton(1); OR solo.clickOnImage(1);
By "quick action icon" you mean a MenuItem in the ActionBar? You can click those in the overflow (and those shown withText) with solo.clickOnMenuItem("MenuItemTitle");
I am currently looking for a way to click those that have no visible title.

Resources