how Connect between Binding and Group Detail Page? - xaml

can connect between binding and Group Detail Page ?
Since shortly i create windows 8 application and i have class Data Source But i can't connect between this class and new page ( Group Detail Page).
i'w like control text and image and Subtitle by binding How ?

Related

How can i create custom form on shopify?

i want create menu ( Service support ). when will be Customer click on service support menu, then it will be display on form like- ( name, email id, phone no, address, pin code ,invoice upload, invoice no, market place (drop down) , Description ) after that it will be submit and customer query will be display on shopify dashboard.
enter image description here
It is not possible to add any data to Shopify Dashboard. In stead you can follow below steps to achieve you goal.
Create custom APP ( which will display query data )
Create custom form using Shopify Liquid and send data to your app database using APP PROXY
Store Query Data in your DB and display it on your app dashboard.
Hope this will help.

Where does Odoo save the contents of My Dashboard

I need to know where Odoo saves the views that will be shown in (My Dashboard) when we click (Add to My Dashboard).
I looked in the table scheme and I could only find one related table: board_create
which is used to save the custom dashboards the user creates.
But I only want to find out where the contents (the views not the data) of the default Dashboard are saved in the database.
In OpenERP 7 and 8 you can find the view for dashboard in 'ir_ui_view_custom' table.
The view will be saved inside 'arch' column.
From OpenERP web interface this is will happened when you click 'add to my dashboard'
Javascript will invoke 'add_dashboard'
Javascript will make rpc request using '/board/add_to_dashboard' to openerp server
Openerp server will invoke "add_to_dashboard" function
Openerp server will save the view inside 'ir_ui_view_custom' table
Openerp use these files to process 'add to my dashboard'
/OpenErp7/addons/board/static/src/js/dashboard.js
/OpenErp7/src/main/openerp/addons/board/controllers.py
I hope this help.

Openerp 7 access right layout

i have created security access for the user's. after creating i got the view like below image.
By giving permissions in .csv file like 1, 1, 1, 1 as shown in below image.
My Question is this permissions should be bring to front end. the admin can give access rights/permissions to the different users. Can we bring that permissions to front end?
Admin will directly file access like this.
And can we change the layout like below image.
How can i do this.
Thanks in advance
Your problem will be easily Solved using Creating the Controller in ODOO 8.0
You must have to Follow the Below steps for creating your layout As you want.
Create the new model class (in the form of object) in your module.
the class contain the login of get the detail of ir.model.access (which is base object of odoo)
Create the View file For displaying the your layout in the form of web page
the view file use the bootstrap classes for designing your web page layout.
the view file use as the rendering the detail of ir.model.access object
hear the Layout is based on Qweb Template as well as the web page menu for displaying your data in your webpage
Finally run the controller in your browser and see the detail of your access rights in the form of webpage

Image slider link to internal or external page on Sitefinity

(Sitefinity 6.x)
I am trying to create an image slider where each image in the page links to an internal or external page. I created a separate library for all the images that I want to show on the slider then using custom MVC widget I display the images in a slider.The problem that I have is there is no place in the image where I can link the image to open an existing internal page or external website.
Is there a way to add a properties to the original Image properties? so that users can select a page (using some sort of page selector just like in the navigation widget) or type in external page to link. If that is not possible, could you give me some ideas how to implement this?
I've been creating image rotators using Module Builder in Sitefinity. What you could do is go to Administration -> Module Builder -> Create a Module, call it Image Slider, call the content type Slide. Add a couple fields, for the first call it Image and select Media for the type, this will use an image selector for the interface, then add another field called Link and use Short text for the type, this will hold the url. Unfortunately, Sitefinity doesn't include a Page Selector control as an available field yet so a text field will have to do. Save and activate your module, it will show up under Content -> Types of Content. Go ahead and add a few slides. Sitefinity has created a couple of widgets when you created the module, so if you edit a page, you'll see them under the "Content" widget section, probably at the bottom. Drag it on the page and set it to use the list template. Now open up the Sitefinity Explorer window in their Thunder Visual Studio plugin, under Common Widget Templates, you'll see an Image Slider folder, you'll want to edit the list template since you'll be outputing all the slides into some carousel markup or something. From here you can use the default Sitefinity image control and bind the link to a hyperlink that wraps the image control, this will link each image to whatever is in that field.
Hope that helps.

Create dynamic Page XAML

I am new to WP8 app dev.
Scenario:
WP application client and Server
Application will display content received from server
Response from server has 2 types : list item page or detail page.
Question:
When server responses a list, Client app must be create a dynamic list Page with data from server
When user click an item on list, server may response a list (cont.) or a detail of this item (user dont know list or detail).
Please recommend a solution for this case support Navigation Back pressed? (only create a page using object parameter response from server)
Start page -> List -> List-> List->List-> Detail Page.
or : Start page -> List -> Detail Page.
Your question is unclear, but I will try to resolve the ambiguity. If the data from the server is just that - data, then you don't need to create XAML dynamically, you should use LongListSelector for displaying arbitrary lists of data. This is the case when the amount of data is unspecified, but the structure is the same. See MSDN link for more information.
When you get the details from the server, simply use data binding to fill predefined controls on the page. You can always hide unused controls.
In case that the data that comes from the server changes UI in a way that cannot be predetermined e.g. each list looks completely different and details page is also variable, you should create XAML on the fly. Simply create empty pages and in the constructor add controls. For example:
// ListPage.xaml
<ScrollViewer>
<StackPanel x:Name="panel">
</StackPanel>
</ScrollViewer>
// ListPage.xaml.cs
public ListPage()
{
InitializeComponent();
foreach(var data in somesource)
{
if (...)
panel.Children.Add(new TextBlock());
else
panel.Children.Add(new TextBox());
// ...
}
}
Why don't you use like this:
Have 2 pages ,First One for List View and the Second for Details view.
Based on the server responses pass the data to corresponding pages,whichever you want.You are not allowed to create pages dynamically and use them.
Doesn't need to create dynamic xaml page. Create three pages
1. Start Page
2. List Page
3.Detail Page
In list page use a ListBox control and bind listbox with your server data. Here and enter link description here nice explanation about listbox control