I want to write the code which will show certificate table only to those customer who have "certificates" license.
======================
Related
I am looking for a widget (preferably fusion chart) with the following capabilities
Should accept the lane category values dynamically to make it work
for any number of categories
Widget should accept lane background color as input.
The starting timeline should be first date provided by the list.
By default widget should show 12 months.
It should take title as input
User should be able to change the Milestone position by dragging it
Widget should have capability to update the model when user changes a milestone
by dragging it.
It should have capability to color code the
milestones
Show the current date (Orange line)
It should have capability for the user to view timeline in different ranges like 1M, 3M, 6M,
12M, All or Custom Date range
The FusionCharts Milestone indicator widget is not satisfying the highlighted requirements. Also it requires a task to be added to a category to add a milestone.
Can you please suggest if it is possible to achieve this in the FusionCharts Milestone indicator itself or is there a widget which better satisfies the given requirements
I want to show all reservations in form of list on website and on same website i want to show the form to add new reservation.
Do i need to make viewmodel with all fields and list of reservations or some other way?
All i know is to show list and use button to go to next page to create new reservation but not a single one to do both.
I have created a page with a table widget which contains icon buttons that are connected to an edit page and a review page.
I would prevent App Maker from displaying the buttons permanently. The buttons should only be shown for a selected record. Is there a way to do this in CSS or do I have to add a hide/unhide script to the onclick-event of the record? I would also like to know how I can format the date in the record as dd/mm/yyyy.
You need to add the following built-in App Maker CSS class to the button:
visibleOnAncestorHover. You can reverse-engineer how the delete button is implemented:
I'm currently taking a beginner's web design class. I wanted to expand upon a project we just did where we designed a site for a store and build a simple shopping cart using HTML and CSS and using PayPal to check out using a Sandbox account. I've already created a business Sandbox account and built the cart table with a list of items for purchase and number input forms for users to enter the quantity. My question is, how do I pass the individual quantities of the items and prices to the paypal cart?
Check the shopping cart items section of the variables reference. You'll notice fields that have a 'x' on the end of them. Those would be 1,2,3,etc. for each individual item.
The 2nd method on that page should help you setting that up : https://www.paypal.com/cgi-bin/webscr?cmd=p/pdn/howto_checkout-outside
I'm doing one windows phone 8 application. In this I've used list box. For the very first page I'm getting the data from server and adding that data to list box. Now I want to add Show More at the bottom of the list box i.e after the last item, to get the next items from the server.
How could I achieve this?
Hear you have to use Horizontal scrolling for load next data
Check below tutorial
Detect when a ListBox scrolls to its end (WP7)
Windows phone tutorial:Listbox
WP7 – How To Extend ListBox When Reaching Last Item
Windows Phone 7 ListBox Pagination with MVVMLight & ApplicationBar
we can Gets or sets the amount of data to fetch for virtualizing/prefetch operations by using
ListViewBase.DataFetchSize property and can Initiates the asynchronous request to load more data items, in accordance with the active incremental loading settings by ListViewBase.LoadMoreItemsAsync method.
If you want to do it by pagination then the following links may be helpfull for you
DataFetchSize method
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.listviewbase.datafetchsize.aspx
LoadMoreItemsAsync method:
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.listviewbase.loadmoreitemsasync.aspx
You can see examples of using these here (though note that the sample was based on Windows 8 BUILD release and the apis have had some changes)
http://social.msdn.microsoft.com/Forums/en-US/winappswithcsharp/thread/e71b7036-4fb7-4963-a65d-5bcb9fd8f664
I'll go ahead posting the logic as My code might not match with yours
So
1 -> Save the server data in an array or a list.
2 -> Design the xaml in a way that the Parent Grid has two or more rows with the last row for the show more. And the one before for the list. (Adjust height accordingly)
3 -> Populate it with a limited amount of data.
4 -> Next use the ListBox.Items.Add(data) method to add the data to the list. Keep sorted property off so that the elements are inserted at the bottom of the list
-> Go through the link Add Method for Observable Collections
Use step four on the show more button click .. and also adjust the height of the list or put it into a scrollviewer so that limited height scrolling can be done . olease update if further queries