I am trying to load a survey from a TXT file using the AdvancedFormat. My survey looks great but I need to add some validation options for the questions. I have not found any documentation that discusses this option.
Can anyone provide an example how to include validation or confirm that it is not possible to import validations?
Thanks
You can't include validations when you import a TXT file. You'll have to add them in Qualtrics after you import. There are lots of things not supported with AdvancedFormat TXT import. The only way to do a full function import is with a QSF file, but that would be very laborious to create manually.
Related
When I load a STEP model into inventor, during the import processing these is the opportunity to perform property mapping. In my case, specifically "material" property.
Is there similar functionality available when loading Step models into Forge?
Thanks
No, unfortunately, only the options listed in the documentation are available:
https://forge.autodesk.com/en/docs/model-derivative/v2/reference/http/job-POST/
If the mapping can be automated using the Inventor API (not sure), then perhaps you could use the Design Automation API to import the STEP file into an Inventor document and then translate that to SVF which then could be displayed in the Viewer
This question already has answers here:
Scraping data to Google Sheets from a website that uses JavaScript
(2 answers)
Closed last month.
I would like to import the table on this website http://www1.hket.com/store/general/finance/web/hsioptions_day.html
and have it automatically update.
I have tried several ways to import the table to the sheets using
importhtml("http://www1.hket.com/store/general/finance/web/hsioptions_day.html","table",1)
But it seems it is not a table.
I also tried to import the table using
importxml("http://www1.hket.com/store/general/finance/web/hsioptions_day.html",A1)
as the XPath contains double quote I define cell A1 = //*[#id="table1"]/table
But it seems the XPath is wrong and it doesn't work. I've got an empty content error.
I wonder if anyone could help me to import the table properly into the sheet. Once it can be properly imported, I will try using the google script to update it automatically, using this tutorial
https://www.youtube.com/watch?v=ijaj7CXSg-Q&ab_channel=ArgentEngineering
Would anyone give some ideas to me how to properly import this table to the sheet?
I am an absolute noob in this and any help is appreciated.
I fear this won't work, your page is built with Javascript, which isn't supported by IMPORTXML (or by Google Sheets in general).
all you can scrape from this site is:
=IMPORTXML("http://www1.hket.com/store/general/finance/web/hsioptions_day.html", "//*")
and/or also this:
=IMPORTDATA("http://www1.hket.com/store/general/finance/web/hsioptions_day.html")
as already mentioned Google Sheets can't handle websites controlled via JavaScript
i would like to import a CSV file into a custom table from a local magento extension.
In order to do so, I would like to create a new "Entity Type" in the import/export module.
But it seems like this is not that easy, or at least I didn't find a tutorial or documentation while searching the web for some hours now.
Maybe it isn't even necessary to create a new entity type, but i thought it would be a good starting point.
As I am currently using magmi (sourceforge.net/projects/magmi/) to import products, I would also take a solution to import data into custom tables with that.
Thanks in advance for every hint you got for me!
Best regards!
You can do this by setting up a custom Dataflow profile. (System > Import/Export > Dataflow - Advanced Profiles)
There's a fairly simple example tutorial i've linked below which explains both the necessary Profile Actions XML, and also shows a simple example of writing your own dataflow adapter to handle the saving each row in your CSV.
http://blog.baobaz.com/en/blog/customizing-magento-dataflow-import-of-custom-data
Just found one in /index.php/directions example:
But can't find any suggestions on how to use it... May be someone where i can fine manual on this spoiler (module) ?
The module you show in your screenshot is just a standard Joomla! "Custom HTML" module in the sample data set. There is no manual for it.
The "hide/reveal" mechanism is from the "Beez5" template, specifically it's created by the module chrome file. You can find that file in /templates/beez5/html/modules.php and the Javascript for it in /templates/beez5/javascript/hide.js.
Modules can have their default chrome specified by the template, it's also possible to create module layout over-rides for specific templates.
I'm using PyroStreams on my PyroCMS-based site, which is working great, but the front-end search functionality it offers is a bit too limiting for my needs.
My stream consists of over 20 fields. On each page of the site I want a simple keyword search box which will search on 3 of the fields in my stream. Currently I'm using the PyroStreams search form for this and it's working great.
But I also want an advanced search page which will build a form based on all 20 fields, pulling in data from the stream to build it, e.g. in my steam I have a field-type of Country and on my advanced search form I want to include a dropdown list containing all the countries found within that field-type.
What I'm asking is what is the best approach to doing this?
Should I build my own module, separate from the PyroStreams module to perform this, or is that a bit of a sledgehammer to crack a nut?
I'm a bit of a novice in this field so all help & advice is greatly appreciated.
Tony.
Just Grab sample module from here...https://github.com/pyrocms/sample and understand the folder and file structure.. Its quite easy to develop custom module in pyrocms.You just have to provide basic module detail in the detail.php to install the module. then create a new controller with the same name as module in controllers folder and same for the view and model. you can easily understand once you will go through the sample module..
url stucture will be like this
{{ url:site }}controller_name/method_name/paramate of method.
Hopefully this will help you..
This is a late answer, but PyroCMS now has a search module.
You can see the documentation to learn how to use it from a developers point of view here:
PyroCMS 2.2 Search Documentation