Image Title/Description Not Appearing In Media Gallery Lightbox - module

I'm using the media gallery module for Drupal (http://drupal.org/project/media_gallery). I have a gallery set up, and all of the images have titles and descriptions. When I click an image in the gallery, a lightbox opens up and shows the image, but it doesn't display the title nor the description. When I click the image inside the lightbox, I'm taken to another page where the image is shown again, this time with the title and description.
I need to know if there's a way to do one of the following, and if so, how to do it.
Is there a way to get the image title and description to display in the media gallery lightbox? (Currently, the lightbox displays navigation arrows, a slideshow link, a close button, and "Item X of Y")
Is there a way to take the user to the detail page directly instead of opening up the lightbox?

If you go to the 'Edit gallery' tab make sure the 'Show title and description' checkbox is checked like this:
Once the titles/descriptions are set to show (and you probably already know this, since you have the titles and descriptions showing in the actual pages), you can add or modify the titles/descriptions by going to the 'Edit media' tab.
Hope this helps!

Related

Show APEX$ROW_ACTION on button click in Oracle Apex

I have an editable Interactive Grid in a page. My page is read only on page load, and there is a separate button 'EDIT' in page, by clicking on which page becomes editable. At the moment, APEX$ROW_ACTION column of IG is visible on page load by default. I want to APEX$ROW_ACTION column only after user clicks on EDIT button.
NOTE : This EDIT button is not the default Edit button of IG
Sorry, but my Javascript is still too weak to solve this (I keep meaning to learn more!). How about going at this a different way?
What if you used 2 grids on the same page, one read-only and the other editable?
The page defaults to displaying the Read-only
They click the Edit button
That hides the Read-only and displays the Editable
This Apex Forum comment describes getting around the 1 IG per page limitation: https://community.oracle.com/tech/developers/discussion/comment/12587490#Comment_12587490

How to link a certain/specific page on a PDF document to a certain word/number on a Word doc?

How would I link a specific page on a PDF document to a certain word/number on a word doc?
Please follow these steps:-
On the menu bar, select Tools > Advanced Editing > Link Tool.Your mouse cursor will change from the hand cursor ( ) to . Use this tool to click and drag, drawing a box around the text that you want to link.
Once you have completed drawing the box, release the mouse button. The Create Link dialog box will display.
Select the Open a page in this document option.
In the Page field, type in the page number of the page you want the link to jump to when clicked.
Note: Make sure you type in the actual page number of the page to which you want to link. You can determine the correct page number by going to the page you want to link to, and then look at the bottom of the Adobe Acrobat screen ( ) to see what page you're on.
Click OK to apply the settings or click Cancel to exit without applying the settings.
After clicking OK in the above steps, the box that you drew around the text to link will display in
red. You can adjust the width and height of the box if you need to by clicking and dragging each
side of the box. If you want to change the appearance of the link, go to the "Adjusting the
Appearance of the Link" section of this document.
I hope that helps!

How do I implement this type of dynamic UI in a Razor view?

I will start by saying that I am an absolute newbie to web development and to MVC as well.
I want to implement a view for a Subscriber page (part of an MVC4 application dealing with Email marketing). What I want to implement is:
1) When the user clicks the "+ Add a List" button, a new Category should appear on the left and the cursor should blink, meaning it should be ready to receive the name for the category from the user. I also want that whenever the user hovers over any category name on the left, a small bar containing two buttons (edit and delete) should appear which should let the user edit the category name or delete that category. The thing I want is that all of these must happen without reloading the page.
2) When the user clicks the "+ Add Contact" button, a pop up dialog box containing two tabs should appear which lets the user either manually enter the details or upload a CSV to capture the details. Whenever the user clicks the "Add Contact" button or "Upload and Add Contacts" in the pop up dialog box, I want the new contacts to display in the contact list region shown in the picture (once again, without reloading the page). I also want the same hover bar for the contacts too (same as categories).
I am confused as to how to implement this in a Razor view? What do I use - JavaScript/jQuery/AJAX?
I am pretty much lost. Can someone please guide me a little bit so that I can continue and finish my first MVC4 project?
You need some javascript libraries like jQuery UI or maybe Kendo UI, I'd recommend to use jQuery UI at this time. they have many widgets but look at these. and keep in mind that a cshtml view can be look upon like a html page, you can have all tags, css and javascript you want there:
http://jqueryui.com/dialog/
http://jqueryui.com/tabs/
http://jqueryui.com/

How to create a nice add button to list view like in the Weather app?

Following these steps:
Open the Weather app.
Right click
Click on places
See that little item with the + symbol? I want to do something exactly like that, the looks and behaviour.
Assuming you are just trying to get some basic ideas about metro-ui controls and you are on Release Preview.
When you do right click, the control that's being triggered is called App Bar. The "place" button is a App Bar Command. Clicking on the button will take you to another page (HTML or XAML). This page contains a ListView control with GridLayout. You can dynamically change the ListView Template and assign different actions to the itemInvoke event.
Here is a quick tutorial for App Bar and commands:
http://msdn.microsoft.com/en-us/library/windows/apps/hh465309.aspx
Here is a quick tutorial for List View control:
http://msdn.microsoft.com/en-us/library/windows/apps/hh465496.aspx

Is it possible to add icon to each item of NSCombobox?

I am working on form application. I came across a scenario where i need to provide a ComboBox to user. Now in order to make look and feel more appealing, i want to display a small image or icon before each item of that combo box.
Is it possible to add icon to each item of NSCombobox?
Welcome any comment