Comments
-
@andyarok to remove the FILTER and EXPORT you can do this manually for the dashboard (if you don't include the parameters in the API request then it will default to what you have set inside your Domo instance). Loom explainer video: https://www.loom.com/share/89f18915d3c24e938ab70d98210e51c4
-
Yes! @andyarok you want to use what is called "private embed". Domo Github: https://github.com/domoinc/domo-node-embed-filters Loom example site: https://www.loom.com/share/78bddd9770bc407197f8f59f84e672e9
-
@SimonKing_Atolls if logging is not fully enabled, or if only partial logs are being captured, that might explain why you're seeing limited data. To resolve this: Go to your Google Admin Console. Navigate to Reporting > Audit Logs. Ensure that relevant logs, such as Admin audit, User activity, or Customer usage, are…
-
@DavidChurchman This might be an issue of version compatibility. Even though the error mentions R version 4.1 being older, the package you're trying to install (SentimentAnalysis) only requires R > 2.1, so it shouldn't be an issue of version compatibility. However, it's possible that certain dependencies for newer versions…
-
@sourabh05 I have always used the proxy when working locally, but you can always "redeploy" to the exact same app in the Domo instance using the "id" in the manifest.
-
Oh wait, @sourabh05 the issue is because you are running it locally and there is no server located at http://localhost:3000/domo/data/v2/leads?limit=10" to accept that request. Try pushing it up to your actual instance of Domo and running it there with automatically switch from trying to hit "http://localhost:3000" to…
-
@sourabh05 I see two issues: 1.) You have "datasetsMapping", while the code requires "mapping". 2.) You have "DataSetId", while the code requires "datasetId". Here is an example from some of my existing app that I wrote last week (however this is for a react app; not a vanilla JS. Meaning that there are possibly…
-
@SirGanty card filters should be noticed by domo.onFiltersUpdate() (as long as they are not custom DDX brick filters)
-
@art_in_sky I believe it needs to be converted to a custom "Domo App". The App Studio is for building dashboards with a better UI. But I believe the issue is going to actually surround public/private embedding when it comes to being able to use "update commands".
-
The onUpdateFilter function should always trigger. I haven't seen it written "domo_fl.onFiltersUpdate" before. That might be your issue (i.e. switch it to just "domo.onFiltersUpdate") Here is an example from previous code that I have written.
-
It would be AMAZING
-
1.) The AppDB is not available through DDX bricks only through Custom Apps (I have built many to utilized the AppDB if you want to send me some code I can rewrite scripts to show how that would work for a custom App instead. 2.) Queryparams of the parent website will not be accessible to an iframe (this is a rule that is…
-
Here is some thorough documentation I put together to help people with understanding how to get developer credentials from Domo (there are screenshots to lead you through the whole process). https://docs.clearsquare.co/private-embed-default
-
@ArborRose I found your issue. On your javascript line 24 (and on line 42 of your example data) you are "Check[ing] if latitude and longitude are valid". However, because the longitude always happens to be a negative number (a falsey boolean) in your dataset your function is bypassing the if statement and not adding the…
-
@OliverLange & @ArborRose although I completely agree with this statement there is now a wonderful workaround. If you recreate the dashboard and an App Studio app and embed the app the padding on the sides will be maintained! Although this doesn't work for all cases it can sometimes be a good workaround. BUT I would like…
-
@DustinBlock try reaching out directly to support@domo.com via email. I have run across this exact error before in the past. So I just hop on gmail and send off a quick email. **Support is actually very responsive!
-
@art_in_sky and piggy-backing off what @ellibot said, I have tested in private embedding as well and it doesn't work there just yet.
-
@Josh_Evans20 It depends, I would say it's better in the respect that it can be much easier to understand and keep track of. However, if you are trying to use scheduled reports then the second option wouldn't be as intuitive.
-
@Josh_Evans20 okay now I understand. The issue is when a user attempts to access a "user-based privately embedded dashboard" via iframe OR url link and their Domo user does not have access, then DOMO will present them with the message "Sorry. This content is no longer available." in the embedded Iframe. Here is a screen…
-
@Josh_Evans20 there are a few different ways to create an embedded "link" here are 5 different types: (hyperlink and card interactions) Which type are you using? However, if you are embedding a custom Domo app then you want to add the navigation url to "Admin" → "Network Security" → "Custom Apps authorized domains" (see…
-
@DatAIBrain I think the issue is just the name of the column that is attempting to be filtered against. Here is a federated dataset from Google Sheets (I know it's not BigQuery, but I can get the same error to replicate that you are seeing). Loom:
-
@DatAIBrain the example I showed is not federated, but I just tried with a federated dataset (I would have shown it but I only have production data), but had no issues embedding it. Two follow-up questions: 1.) What is the federated source? 2.) What is the filter that you are trying to apply?
-
@dmurgit1 here's a loom video on how I've done that for other clients. Loom screen recording: https://www.loom.com/share/4fe00477ea3b473ca123e0d0a3ff800b This allows for complete white-labeling and branding as well!
-
@DatAIBrain here is a screen recording of exactly what you are talking about. Loom The issue is that the data that is being filtered is being filtered on a column that doesn't exist or all of the data has been filtered in such a way that no data exists when the iframe is recalled.
-
@Edgar_Movius here is how we help Domo clients show their App Studio apps to their clients with programmatic filters already being applied and in a white-labeled environment. *This loom screen share shows embedding w/out that annoying top banner that you are seeing.*
-
@lhrogersiv and @bryceorton we have built this exact solution for a quite a few clients now! Here is how we are doing it so you can easily distribute full apps (we white-label the domain and our logging from everything). Loom screen recording (example for user-specific App Studio app logins):…
-
Also add the cloudflare url to your Custom Apps authorized domains. If you want it to be approved outside of the Domo domain.
-
This is something where you could use workflows to upload the text you want changed and use some simple javascript to modify the text and then download it. Here is an example: function downloadAsWordDoc(content, filename) { const zip = new PizZip(); const doc = new Docxtemplater(zip); doc.loadZip( new PizZip( `<?xml…
-
The issue that you are facing is that the Squarespace domain needs to be an authorized embed url. Here is a screen recording on how to do that: https://www.loom.com/share/a0a8e0254fb3431b8c3c1843f5b54944
-
Are you trying to update the text of the DDX brick or the text of the dashboard name? The DDX brick won't be able to change anything outside of it's little sandboxed environment, but if you just need to change text inside of a DDX brick you are placing at the top of the page I can help you out there.