Oracle Adf 12c Adf Data Visualization - oracle

I have oracle JDeveloper 12c and i want to use graph components .
I don't know where it has been placed and how to create a graph from a view object because when i drag a view object into page, i want to select graph component, it is not available.
can any one suggest me?
thanks

I think you are looking for this.
Its there Components Section in MAF AMX Data Visualizations Section...

When i drag a view object into page, i want to select graph component, it is not available
When you are dragging a data collection from your Data Control into your page, you should get the following menu:
From there, select "Chart" (or "Hierarchy Viewer", if that is what you mean by "graph") and you will get the Component Gallery dialog to select the style of the chart (or hierarchy viewer):
Alternatively, if you do not want to automatically data bind the component and do the data binding yourself, you can select "ADF Data Visualizations" from the drop down menu on the Components palette (usually docked at the right border of JDeveloper) and extend the "Common" area. Then you can drag&drop the chart/graph components from there.

Related

Oracle Apex : Showing SQL Count beside Navigation Menu Icon and Text

I want a dynamic number (an output of SQL query) to be shown besides page link text and icon in the navigation menu of my Oracle Apex application (Just the way it has been done in Oracle Apex Opportunity Tracker sample application).
Editing the static text of link is really simple and can be done by going to *Application123\Shared Components\Lists* and editing Application Menu but what I don't know is that how can I display a count there besides the Text and icon.
This is the desired output
This is where I know, I can edit the text (static) and change/select the icon for the link
but where to write SQL query and get its result instead of [&Leads.] , that's is not in my knowledge. Really appreciate help on this !!!!
select count(mycolumnname)
from mytablename
where anotherdatecolumn = trunc(current_date) and (referid='1' or referid='12' or referidD='18');
DEALS should be an application item (declared in Shared Components)
query should be then used in application computations (also in Shared Components)

How to synchronize view component data with a partial view?

I want to display my .NET Core web page as per the below image.
For the left pane, I am using a partial view whereas I'm rendering the right pane with view components.
I call different API's to retrieve data from the database in order to display data in both panes.
I want to synchronize the left pane record count with right pane view component data.
Is their any pattern/combination of view components or partial views to achieve my requirements?
I want to synchronize left pane record count with right pane view components data. Is their any pattern/combination of view-components or partial views to synchronize my requirement.
You can put rows of each view component into specific "container" with specific css class, such as "vc1-row", "vc2-row" etc.
On client side, you can traverse rows of view component(s) and calculate count of rows of each view component after DOM is ready, and update/repopulate left panel record count via JavaScript/jQuery code.
Besides, if you'd like to implement something like portal/dashboard, which could retrieve data from back-end service and push real-time data to clients and update clients UI with new data, you can try to use SignalR.

How to get data from server in Nativescript gridview?

I am able to load data from sqlServer using mat table in angular, but have no clue how to do same in nativescript?. I think GridView will work,but cant find source to load dynamic data.
If GridLayout is what you mean by GridView, it's just layout not responsible for loading data.
If you are looking to load list of items on screen, then ListView is what you need. If you like to show table kind of layout with multiple columns then you must design your item template with a GridLayout.
If you go with RadListView, you have different layouting option too.

How to query Umbraco's 7.X page setting (Grid Layout) to create a menu?

I'm using Umbraco 7.3.3 to create a home page with a verical parallax scroll menu. My approach is to create a Editor/View for each specific section and use a setting (from Grid Layout property editor) to render the ID that I'll use as anchor for my main navigation.
I've also tried to create the sections as Child Documents but it's lacks the ability to freely reorder the sections.
Is the first option the best approach to create a Grid Layout with Parallax Scroll navigation? Can someone point a different/better way to create a "scroll down" navigation menu?
The backbone is OK but I don't know how to query CurrentPage's settings under MainNavigation.cshtml Partial (I'm using Fanoe Starter Kit).
How can I query by a specific CurrentPage's setting?
I'm expecting something like:
// first try (Does NOT work)
CurrentPage.GetProperty("content").Where(s => s.some lambda expression)
//another tried option based on GetGridHtml method (Does NOT work)
CurrentPage.GetGrid("content")...
Here is the setting configuration for each row that should have a navigation item in menu:
[{
"label": "Section Name",
"description": "Type the section name",
"key": "id",
"view": "textstring",
"applyTo": "row"
}]
I've made an extra research and I found (here and here) that there is no API that handles the serialized JSON stored by the Grid Layout Editor.
Limitations With the above usage scenarios in mind, consider the grids limitations. First of all, all content entered into the grid is stored as a single property value on the content node, as a big JSON object. This means that as soon as the values are stored in the database, there is no managed api to drill into the grid content and target specific cell content - so a grid layout is not a recommended storage of reusable content - it simply wasn't designed for this scenario. If you wish to reuse content in multiple pages, it is still recommended that you store these pieces of content as separate content nodes, so they can be stored, cached and queried as usual.

MS Expression Blend: Sketchflow - Populating a sub datagrid with data upon selecting a specific row of a master datagrid?

I've recently started using Expression Sketchflow to prototype some user interface designs. I currently have a master datagrid at the top of the page, which I would like to allow the user when selecting a particular grid row to see a sub-datagrid below be populated with specific data relevant to that specific row of master data.
Could anyone shed some light on the subject!?
Help greatly appreciated.
I figured out how to do this by reading this article:
Expression Blend 3 – secrets of working with data.
Here's the basic steps (you already did a couple it sounds like)
Create your sample data set
Under the Data tab select the List Mode and drag your collection onto the screen, a list view of your data will be created (Master datagrid)
Now, select the Details Mode and drag and drop your collection onto the screen where you want the details to be displayed. (sub datagrid)
Tweak the fields displayed by dragging properties into the respective containers or modifying the XAML / Bindings list
If you have a child collection in your data, you may have to jump through a few more hoops.

Resources