Comments
-
You have to add it as a card.
-
Depends on how you added it. Did you use the options I mentioned earlier to add it to App Studio and it's still not working as expected?
-
Bricks are unique per app instance or in this case card. Adding an app creates a new instance of the design which with standard custom apps would show the same for each card. With Bricks, since they have customized settings and code stored unique to each app instance, a new instance would show the default state since none…
-
To add a Brick card to App Studio you will want to use the Card option in the CONTENT section and then ADD CONTENT > Add existing Card
-
Despite the similar names App Studio and Custom Apps are completely different things. App Studio is more like an advanced dashboarding tool that can have apps as part of it. Custom Apps information can be found here - There is also a beta for the Pro-Code editor which will let you edit and preview custom apps inside Domo.…
-
So sections by nature are intended to be separate pages. As far as customizable forms the forms themselves are not. It would have to be a custom app that is coded to display as a form. That would have to be fully custom code on your end though instead of something out of the box.
-
Bricks are restricted in public embed for security reasons. You could use a standard custom app to do the same thing but I would caution against putting something allowing any and all public user input out there.
-
I don't believe any have phone number type validation, signature question types or style changes to the title. Not sure exactly what you mean by sections within a single page but that may be possible. The Brick won't have any of that without you custom coding all of it but it is all technically doable as custom apps can be…
-
Form Builder and Form Viewer are custom apps that provide a system to create and submit forms. Builder can build and submit while Viewer is submit only from the forms built in builder. These use AppDB collections that sync to DataSets. These are considered legacy applications however and the plan is to replace them with…
-
Bricks usually have more than 1 DataSet by default just in case you need them. This is because Bricks don't have access to the manifest to add or remove wired items. As suggested, if you never need the sample datasets wire all datasets to your desired one(s) and then you should be safe to delete the unwanted datasets. It…
-
PDP policies work the same in apps as they do in cards. Are you referring to the PDP previewer? That does not currently support apps. It's just a filtered view based on the PDP policies.
-
Unfortunately, Custom Apps do not have an automatic way to see the dashboard name of the page they are on. They can usually see the ID however and, while not an elegant solution, you could make a lookup table with the names and IDs and use that.
-
It looks like you have a solution figured out but just chiming in to say you can't aggregate inside the fields section. Aggregates are a query param like sum=field1,field2 See -
-
The Quick Date filter does not support custom apps. EDIT - I guess I should get clarification. This section is for custom apps are you referring to those or are you looking for App Studio help which would be a different section?
-
Because of the parallel gate it will assign one form which will wait but then also go through the loop on the other path and assign the next person which will also wait and then loop and assign the next person and so on. Once the loop finishes it will end that path but the workflow itself is still in progress because it is…
-
There are probably other ways to do this but you would want your loop that goes through the list of persons to go into a parallel gate that has one path going to the form and a second path that re-enters your loop. This is a crude layout of kind of what you are looking to make: A more fleshed out workflow using only Global…
-
Yes, you can assign variables that are of the Person or Group type from that drop down.
-
Are you looking for something in App Studio or in a custom app? I know we use the term "app" a lot but they are different things and the solution is likely different depending on what you are trying to do.
-
Information on filtering can be found here
-
We recently made changes to allow for nulls where appropriate. We are working on either having the Global Functions handle nulls better or setting the ones that cannot handle nulls to not allow nulls. Hopefully that way situations like yours cannot happen. Thanks for the feedback.
-
I have some good news for you. We are releasing a beta soon for an in browser editor for custom apps. This will provide you with a better editing experience similar to what you have seen with Bricks and have all the templates you can currently get in Bricks. It also doesn't have the restrictions that Bricks have with…
-
The name in the start endpoint is the aliased name. When you edit the app you can see the alias names in the wiring screen.
-
The Form and DataSet Brick uses a form inside of the app to write to AppDB. AppDB is a document based data system that is separate from the standard DataSets found in Domo. This AppDB data can be synced to a standard Domo DataSet. The DataSet it syncs to is automatically generated with a name using the format…
-
The workflow Brick only supports mapping a single workflow currently. If your custom app needs to map datasets and workflows you can use the Brick as an example and then create a normal custom app where you can set the manifest to have all the mappings that you need.
-
Sorry for such a late response but onFiltersUpdate is used to suppress the filter change from refreshing the app and then you will have to code what those filters will do in your app. If you just want the app to reflect the standard page filters and if the dataset being filtered is wired to the app it should reflect any…
-
As far as links are concerned you will want to use domo.navigate in custom apps
-
If an AppDB collection is set to sync this will happen automatically every 15 minutes. There is the endpoint to force a sync but if that 15 minute sync or any other sync is in progress the dataset will be locked until that other sync completes. I'm not sure I'm following the issue in the original post. Is the data not…
-
If there is a sync issue where that dataset isn't syncing it's usually one of a couple things. First you want to make sure the Owner of the collection has access to the dataset the collection is syncing to. Second you want to verify the data in the collection matches the schema. Lastly, you can force a full replace by…
-
The dataset AppDB syncs to is a new dataset created on the first sync and is usually not the one wired to the app unless you created it and then later wired it to the app. The naming convention by default is {appName}_{appInstanceId}_APP_DB and the description will include "Auto generated from appdb service. datastore:…
-
If there is a sync issue it's usually one of a couple things. First you want to make sure the Owner of the collection has access to the dataset the collection is syncing to. Second you want to verify the data in the collection matches the schema. Lastly, you can force a full replace by adding a new document and then…