Bootstrap in xpages André dojo tab container - twitter-bootstrap-3

I am developing an application on xpages using Bootstrap. The main xpages has one tab container. In an action that is inside a button contained in a dialog (from the extension library), inside one of the tabs, in your oncomplete event I give a partial refresh on several elements. All are updated except the current tab that is all blank. Does anyone know if there is any restriction on using Bootstrap that is already shipped in the domino itself with the dojo tab container?

Related

Switching between Phone/Windows XAML editor preview in VS2013?

I have a universal app for Windows and Phone in VS2013, and I have a page in the shared project of the solution.
When creating pages in the Windows project, the XAML preview window shows a tablet.
When creating pages in the Phone project, the XAML preview window shows a phone.
When creating pages in the shared project, the XAML preview window shows a... tablet.
As I try to put more pages in the shared project, I'd like to have a quick way to sanity-check my UI on both form factors without having to actually run the project. Sadly, there is no option in the Device panel to switch between preview devices.
How can I preview the XAML of a shared project page in the phone without actually running the project?
You don't need to run the project.
There is an easy way to switch between the different design views using the dropdown that is present above the xaml code of the shared project as shown below.
Step 1: Locate the dropdown
Step 2: Click on the dropdown arrow
Step 3: Change the Project to .WindowsPhone
Step 4: Change it back whenever required.
Hope it helps
In your XAML View. Above the XAML code in the top tool bar you can find a dropdown that will let you switch between YourApp.Windows and YourApp.WindowsPhone. This way you can easily switch views.
Hope it helps.

How to create a Side Panel using the Firebug API?

Firebug.Panel can be used to create a new panel in the main Firebug window. I am wondering how to create a Side Panel for the HTML main panel?
Going by what the side panels built into Firebug are doing, I believe it should just be a matter of adding parentPanel: "html" to the panel.

How to use Firebug CSS on dynamically appearing components?

I am working on a Javascript Based site, which uses the Dojo Framework.
I am using a DataPicker. I wish to change the background color of the datePicker, and hence I wish to look at where in the CSS is the color being set, so that I can override it in my CSS.
Usually I use FireBug and 'Inspect Element in FireBug' to view the HTML and CSS together. (or even Google Chrome's developer tools)
However this datepicker is a dynamically created component, and If I right click, or move my mouse into the Firebug window, the date picker is shutdown/destroyed. (You can check out the sample on the linked page itself)
Is there a way to inspect the CSS on these kinds of dynamic elements, using Firebug, or something else?
The best approach I've found for the dijit popup widgets is (using chrome)
Open the popup (in this case the date picker)
Right click on the element
Select "Inspect Element" from context menu
Chrome will open and transfer focus to the developer tools without blurring the focus of the page, keeping the popup open, allowing you to modify attributes and css rules and getting instant feedback.

Refer to an element of a another page (Windows 8)

i am using a c# flyout in my windows 8 store app. When i open my custom flyout (i.e. Settings) i want to hide the advertisment that is in the page below the flyout. Is
there a way that i can refer to this Ad within the code of my flyout page?
Thanks very much
The best practice is to use attached behavior (see nuget package winrtbehavior), you can attach the property and when the popup is loaded you can invoke the command to hide the adcontrol

Quick search ViewPart

In my Eclipse plugin I'm displaying data in own view using TableViewer. I've added search functionality for this view via custom dialog being showed after pressing CTRL+F. To do it I've used key listener attached to TableViewer's Table. In Windows, search works fine but in Linux it is being overridden by other functionality: Eclipse displays a text field at the bottom of the active view and does incremental search.
I want my plugin to behave the same on both platforms (I haven't decided yet which approach will be more convenient).
how to enable / modify this functionality in Windows?
how to disable it in Linux?