Is there any way to use the Show Single Category feature within a calendar view?
The problem I have is that the first field in the view needs to be sorted based on the category that it will be searched with - but with a calendar view, the first field needs to be sorted in ascending order so that the calendar is created properly.
All i'm trying to do is populate a calendar and then make it possible to select a name from a list - which then shows only the appointments for that name in the calendar view.
Is anybody aware of any workarounds for this?
Thanks.
it is currently not possible to filter calenders. we have the same problem using the calendar from extension library in xpages.
Related
I have a list component with config grouped is true. The list items grouped by grouper defined in the store. Now I want to set custom template for each group header. For example, to show number of items in each group on the header.
Is there any way to do that in Sencha Touch 2, or any extend component that help me archive that.
Thank you for any help.
Use getGroupString on the associated data store. From within that method you can access the record and store (via this).
I want to create my own module which is an extension of sale.order. I want to have a form view which is like sale order view with few additional fields,
My problem is that when I inherit the sale order view and add say three extra fields these fields comes by default in the Original Sale Order form view too.
is this the default behaviour or am I doing something wrong ?
What should I do to achieve what I want.
If you inherit the view and add some fields using 'xpath' , than it will change the original view by installing your new module. This is the application of view inheritance. If you want to keep the original form view as it is after the installation of your module and want to define another which have some extra fields only for your customized module, you have to make a different form view without inheriting the original one. May be in future , there will be a facility of extending an existing form view, but right now you can't do that.
I think you need to check view_id in your code may be a view_id is common so you are updating a default view of sale order.
When you are inherit one view of sale order a functionality will be added in a form not whole view will be generated.
Still this is not solution send me your code i will review it.
I'm currently developing a Windows 8 Store app that uses a Grouped GridView in the HubPage showing Highlights for some Categories. So far, when clicking the Header you see More Highlights for this Category.
Now i want to add a control at the end of every Group leading the User to the "non-highlight" Category site, where just all the Items of this category are displayed.
Is there an easy and elegant way to do this - propably with a Template is suppose.
( i think the latest Bing-News-App has a similar feature )
Thanks in advance for every help.
There are a couple of ways you can do this.
You can add an arbitrary object to the end of your group, then use a DataTemplateSelector to style it.
You can create your own VariableSizedWrapGrid with the control added to the end in the constructor (slash "Arrange"). You can then add an arbitrary click handler as a dependency property and only show the button if the click handler is set, so you can reuse this on other pages, etc.
You can change the GroupStyle to include something similar at the end of the group, but it likely won't animate with the other items in the group (if that's important to you).
The easiest one to do is probably the first one. If your group is a list of SampleItems then make a subclass of the SampleItem class called something similar to TerminalSampleItem. Create a template for it (like you've made other data templates). Make an ItemTemplateSelector that has two properties, NonTerminalDataTemplate and TerminalDataTemplate (assuming you only have two data templates). Have the SelectTemplateOverride function check for (item is TerminalSampleItem);
Can anyone tell me if it is possible to create a view in share point so that it shows list items from 2 different lists?
For example I have a list 'Meeting' and another ‘Task’ under a subsite. I want to show all the list items from these lists in one calendar view so user can see Meeting and task in one view in the subsite.
Thank you.
You can use the Calendar Overlay feature to achieve this.
Aggregate SharePoint Event/Items into your Calendar view using Calendar Overlay
I've already read all available documentation and I cannot find a solution.
I have a calendar outside of the grid which on click returns a date. All I need to do is filter my jqGrid based on that date. Can someone point me to the correct API method?
Thanks!
You could do the filtering server-side. Attach an event to the calendar such that when the date is changed, the grid will be reloaded by data from the server. When you do the reload, pass the date to the server so that it can do filtering based upon that date.
See reload-a-loaded-jqgrid-with-a-diffent-table-data for some pointers on how to reload the grid.
Perhaps my example here will help you:
How to filter the jqGrid data NOT using the built in search/filter box
(I do the same thing, but filter my jqGrid data based on a textbox value, outside of the jqGrid.)