How to enable hyperlinks in grid - microstrategy

I have a document that contains a grid (Among others).
One column in the grid has full hyperlinks leading to a ticketing system, i.e.
https://ticketsystem.internal.company.com/tickets/ticket1337
I want to enable users to click on the URL and open the ticket in a new browserwindow.
How do I do that?

I assume the url is an attribute form, if you right click on the column header you should be able to create the link (below the example in web, but it works similarly also in Developer).

The attribut needs to be formatted with HTML tags to be a clickable link, using to encapsule the URL-string.
This is done in the data model.

Related

How can I create a funnel in GA4 when the URL is the same?

I'm trying to create a funnel on a form in GA4, but the next steps are all located within a single URL page. On the same page you fill out a form click next then fill out the next part of the form etc. I'm trying to figure out how to create a funnel for each text box in all the forms, but dont seem to have that option in the explore tab.

Edit Text During Google Slides Presentation

I am trying to build a form in google slides. The form will have specific user inputs like first/last name, email, and zipcode. These inputs will be added to a google spreadsheet after the user submits. It isn't necessary that this happens at that time as most of the time, I will be using this form offline.
I do not wish to use google forms to avoid scrolling or single entry pages. The form would be one slide. How do I create a text box that is editable during a presentation?
You cannot edit when presenting, slides are just pictures/videos. You must go with Google Forms or make your own GUI.

How to get element id in google forms

I want to get the id of an element in google forms. I found on the internet that it can be done by right clicking on the element and opening inspect element. It is working for older forms but, for new forms, it doesn't show any id attribute. I am posting both images of inspect element.
Old forms:
New forms:
In new form google have replace id with name attribute.So do one thing, write something in textbox then rightclick on textbox and open inspect element, Here you will find item tag with name attribute which is the key you want
For eg,
<input name="entry.123456" >
Maybe I can help you in finding the id's of the element.
After submitting the form you can look for headers{Form Data} in the network section of developer tools.
You will find something like this..
entry.102708304: "Your response"
102708304 is the id..
Hope my answer was useful. Thank You.
Try pressing Ctrl+U when on the Google Website. In Firefox this will show up the complete HTML Code where you can search better. There has to be set an Id, because otherwise the text in the element couldn't be accessed
hi this has changed a bit,
you need to get a pre filled link via 3 dot menu then prefilled link , copy it into an editor and confirm these entries.
I could not find it visible anywhere in the source code and there are a ton of JS names that seem random and 0 name inputs on my form

Display a word Doc with visualforce page

I want to know what can i do to display the content of a word document, that is in an "attachment" or a "content", in a visualforce page. I not only need to see the text but also have the ability to edit it.
This will not be possible without ActiveX. The only possible solution is to have them edit and upload back. Here is something I would implement:
1. Use documents instead of attachments/Content
2. Create a VF page to display the shared documents/own documents (hyperlink in VF to the doc. record)
3. Create a link to document to view/edit it. (Custom Apex Dev.)
i.e. Using Page Reference, redirect them to '/servlet/servlet.FileDownload?file=IDofthedocument'
I think this should be good enough to not to show the main documents tab (if you dont want the users messing around with the data) and get the functionality working.
I can post the code if required. Please let me know if this helps!

Jeditable displays entire HTML document as replacement for the editable field after trigger/submit

I am using jeditable and had it working very weird.
after editing the editable field and submits it instead of printing the new content it displays the entire document window in the textbox(placeholder of editable content).
question: from the example where the author used save.php. what was the content of save.php?
is it necessary to send the result on a php file?? can't an HTML file work?
I believe within the comments box at the bottom of the author's main page - somebody has kindly provided a version of the save.php file for people to use and modify as needed.
The save.php file is used to actually save the values of the editable field/s. Without it, nothing would happen to the data and it would reset to the default text if the page is refreshed.
Options instead of a php file could be:
Saving the text/select changes to a Cookie
Using another server side methos such as asp, jsp, rails or .NET to process the saving of the changes.
an html page is a static page with no processing facility per say to communicate with the website server, so no.. html is not suitable for such a need.
Saving script must return the string you want to display on page after editing. You are now returning full html page.
Source of for all demofiles can be found from GitHub.