Screens in Folders within Expression Blend Sketchflow - sketchflow

Is there a way to put screens in a folder int he project view and have them available in the SketchFlow Map? I can create the Screens but they are not available in the Sketchflow Map. It is appearing that all of the Screens have to exist at the root of the project.

I know I answered this on twitter for you already, but for the benefit of people who might find this question, the answer is that you can add them to the SketchFlow Map, but they must be User Controls.
Create your folder
Create a new user control
Right click the user control in the project panel and pick "Create Screen in SketchFlow Map"
This also works with existing user controls.
If you wish to move an existing screen into a folder, you must first remove it from the map, move it into a folder, and then add it to the map again.

Related

How can I view all the content of redmine, such as projects and tickets, easily on the screen?

I'm using REDMINE.
I have a list of projects on the screen.
Is it possible to add details of the ticket content to this screen?
I'd like to look over the screen at once instead of clicking with the mouse, how do I do that?
Also, if you have any plugins or useful tips and so on, please let me know.
Tamazawa, I believe you might be referring to "My Page" of Redmine where you could use widgets to decide what you see on that dashboard - keep in mind that such dashboard s project independent, so it can display issues from many projects that you are a member of on 1 screen.
For instance from My Page, you should be able to select an "Issues" widget to Add and set it up to pull a list of items to display using a saved custom query.
That should give you a snapshot of tasks at hand, without the need to click around the screen too much.
You may need to set up your saved query such that:
Description and / or
Last notes
are checked (if you want to see issues at a glance, without the need to open each one separately).
Alternatively, you can skip that "My Page" idea altogether, if you're ok with just opening a saved query with Description and / or Last notes selected.

Acumatica add new screen

Can we add a completely new screen to Acumatica rather than customizing existing screen?
This is not discussed in T100 Guide so was curious to know.
As #Brendan said, it will be in a different guide, but the steps are as follows when you use visual studio primarily.
Create a new Graph Define a Primary View for the graph and related
views
Build the project
Create a page to the correct sub folder under the pages with the
right acumatica template eg: FormDetail or FormTab
set up the primary view for data source and generate controls
Add sitemap in acumatica to show your new page
But this is not a good way to creating a screen. You can also create it from Customization of your project (System - Customization - Customization Project).
Select Screens Tab, select add screen, New screen, will be provided a Window with initial properties for creating a screen. There you will see what need to do (new PXGraph name, a site map for that screen, name of the screen, and number eg: SO301010, but you need to set number that not busy.)

how to set the rights for placeholder ribbon

beginner question for sitecore about settings the right.
So I have an item is open in the page editor.
The renderings on the page has bunch of icons on the ribbon. One of them called 'select the parent element (element name)'.
In my case when I click on it, I am presented with the placeholder with button 'add here' and the ribbon with some component buttons that a user can use to add the controls.
So, QUESTION:
"how I add access to the button on that ribbon for certain role? Where do I set it up? "
For some certain role that placeholder's ribbon is completely empty, including there is no button 'select the parent element' even though
i know there is a parent element.
thank you very much for help,
HF
Here are the screenshots (no icons on the placeholder ribbon, and the user's rights:
enter image description here
And here is how that looks for the admin:
All the settings for the Page Editor are held in the Core database. So in the Sitecore Desktop, switch to the core database and open up the Content Editor.
Navigate to : /sitecore/content/Applications/WebEdit
This item holds the items that make up the page editor. To edit the ribbon menues, go to:
/sitecore/content/Applications/WebEdit/Ribbons
I don't remember seeing that particular button in the Core database, so this is likely a built-in feature that requires the user to have one of the built-in permissions.
The first thing I would check is that Designing is turned on. Have the user go to the 'View' tab in Page Editor and make sure they have checked the 'Designing' checkbox.
If that doesn't work, it sounds like the user you have does not have design access to the page. I would examine the inherited roles using the User Manager and check if they have the Sitecore Designer role inherited.
It is possible they just need to be provided the correct role in the system so that they can access the buttons.
Have you tried the "Sitecore Client developing role"?
Also, for the blue arrow drop list location, in order for the rendering button to show up in that location, you have to check whether the button in the webedit folder under core database(/sitecore/content/Applications/WebEdit/Default Rendering Buttons). The Type field needs to be "Common" in order to show up in the blue arrow droplist.
Example can be the "Edit related item" (/sitecore/content/Applications/WebEdit/Default Rendering Buttons/Edit related item) shows up in the blue arrow droplist.

Icons do not show up in Informatica Mapping Designer

I am new to Informatica and I am trying to learn it bit by bit.Currently I am able to enable the repository services but nothing works after I get connected. As in the transformation icons do not get highlighted when I open the mapping designer. Please find the attached screen-shot. Let me know if any questions. Thank you.
You opened the Mapping Designer and connected to a folder but there is no mapping loaded - create a new mapping or open an existing one and transformations toolbar will become active.
You should have required permission to create source, target, mappings, transformations etc. Icons will be enables only when you have sufficient permission.
Can think of two possibilities,
you have disabled the toolbar...try right clicking in the toolbar area, and switch it on...
you might not have "Opened" the folder. Clicking the plus sign around the folder is not the same as right click -> open for a folder. Unless you open the folder, the areas for source analyzer etc, dont really open up for you..

Any way in Eclilpse to see what method your cursor is in, without scrolling up to the top of the method?

I work with some very large files in Eclipse (3.5.2)
As I move the cursor around inside the file, I can lose track of which method my cursor currently in. As such I have to scroll all the way back up to the top of the function to see it's name.
Does anyone know of a way to have this displayed in Eclipse's user interface?
If you have the Outline view open, it tracks which method your cursor's in.
Another way is to turn on the "breadcrumb" across the top of the editor. It shows the full path to where you are: project -> source folder -> package -> class -> method/field.
Edit: It seems this feature is only available in JDT. Outline view seems to be your only option.