Fabric Answers Event: how to view all values of a category attribute, not just the top 10 - google-fabric

Using Fabric Answers events, is it possible to see all values of a category attribute instead of just the top 10?
See here for how Fabric shows category attribute values. I am not seeing where I can view all values rather than just the top 10.

It's not currently possible to view values outside of the top 10. It's an enhancement that team's been thinking about and I'll make sure to pass along your feedback!
Update
You can now link your Fabric app to Firebase and view up to 25 attributes and get access to Big Query. Check out https://docs.fabric.io/apple/answers/ios-export-firebase.html for more details.

Related

Fabric Answers Event: how to see all custom attributes?

In my app when user reports a spelling error in the table row I send an event with a name mistake with custom attribute id that contains id of the row.
In my case it's possible to have more than 400 different values but in Fabric I see only top 100.
Is there a way to see all of them?
In Fabric, we show the top 10 and there isn't a way to see the full 400. If you link your app to Firebase you can access up to 25 attributes. Check out https://docs.fabric.io/apple/answers/ios-export-firebase.html for more details.

How to use vue-router to show different views of a data table

My web app shows a table of data as the primary view and one of the columns is "item-type". We also need to be able to show alternate versions of the table, limited to each item type.
For example, the main grid shows list all items in the table. But the "red" version only shows the items with the "item-type" of "red". And green shows only green, etc.
Then, in the menu, we need to show counts for how many are in each category - red (3), green (14), etc.
Our primary grid is a slightly modified version of the example from vuejs.org.
My assumption is that I need to create a new filter in the grid component to limit data by "item-type", and then use vue-router to dynamically link to each of those views. Is that the correct way to solve the problem? I can't find any documentation or examples or how to even get started.
Any help would be greatly appreciated!

Custom odoo module - how to make a table

I am creating a custom module with additional part numbers on a separate tab in the products screen. I have built the module, but am having trouble figuring out how to display the information so it matches the layout in the attached image. I have tried tree view but have not been able to get the fields on the same line. Can this only be accomplished through css or is there a table view that I am not aware of?
I also need to make sure that all of the information in row 1 stays tethered together for additional forms, etc. My plan is to make the field names for each row end with a different number (i.e. x_mfrname1,x_mfrpn1,x_mfrname2,x_mfrpn2, etc.). Can somebody please just tell me if I am on the right track. This is the initial Odoo setup for a client of mine and I don't want them to come back to me down the line and find out I forgot something. I have been scouring the internet and reading a few books but I am not completely confident.
Here is a link to a layout of what I am talking about:
MFG Part Number Tab
Thanks!
class sub_part_details(models.Model)
_name='sub.part.detail'
primary_pn=fields.Boolean('Primary P/N')
obsolete=fields.Boolean('Obsolete')
pn=fields.Char('P/N')
desc=fields.Char('Description')
upgrade=fields.Char('Upgrade')
part_detail_id=fields.Many2one('part.details')
class part_details(models.Model)
_name='part.details'
cat=fields.Char('CAT')
sub_ass=fields.Char('Subassembly')
main_ass=fields.Char('Main Assembly')
notes=fields.Text('Notes')
sub_details_ids=fields.One2Many(''sub.part.detail','part_detail_id')
It might be helpful

How to create pagination in windows 8 METRO (C# / XAML) Application?

i want to create a pagination / paging for my listbox.
i have a list box , there will be for about 200 items showing up in my listbox ,
so i want to perform pagination on my list box and show 15 items per page , and when user presses next button it will be going to next page and when user presses previous button it will be going to previous page .
Please let me know , How can i implement this my application.
Thanks in Advance.
Here's what you are looking for:
Discussion:
http://social.msdn.microsoft.com/Forums/en-AU/winappswithcsharp/thread/9d3cadd3-dc95-4219-9f90-e1aae6ad25c8
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
IncrementalLoadingTrigger and IncrementalLoadingThreshold properties
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.listviewbase.incrementalloadingtrigger.aspx
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.listviewbase.incrementalloadingthreshold.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
and take a look at Hamid's BUILD session that discusses these here:
http://channel9.msdn.com/Events/BUILD/BUILD2011/APP-517T

How to display different data from the same table in Repeater that exists in many pages of the website?

I have a Repeater that shows safety messages from the Safety Messages Table in the database. Since I will put this Repeater in many pages of the Website, I want to this Repeater to show different messages in each page. For example, if it shows message#1 in this page as a first message then message#2 and so on, it should show message#10 as a first message in the other web page and so on. So how to do that?
My query is very simple like this:
SELECT MessageID, MessageDesc, MessageAuthor FROM [SafetyMessage]
Is this issue related to the query? Or it can be done from the Repeater itself?
UPDATE:
I want the repeater to show the data from the database in each page in different order
What you want is called "paging support". Here is an article with an example of how to do it.
Edit: Based on further information from OP...
It sounds to me like what OP is asking for is paging and sorting.
This article explains how to do paging and sorting with a repeater control.