Hi I have a flow where issues are submitted. What I wanna do is, put a value on Action.togglevisibility.
Or identify which toggle was selected and then use Compose to define variable.
Any inputs are really appreciated.
Related
Based on the value of a question submitted in a Microsoft Form, I want to send an adaptive card to one or more people via Teams. I think I have the end steps figured out. I have the adaptive card nested within an Apply to each action. The Recipient of the adaptive card is set to the Current item of the Apply to each, and the selection on the Apply to each is the output from a variable.
That variable is where I'm hung up. I'm currently using an if formula to calculate the email addresses. This is probably where I need help.
if(equals(outputs('Get_response_details')?['body/r43d6bce2bb684bf79bff6d8c61fb8f9c'],'Finance'),'josh#.com',if(equals(outputs('Get_response_details')?['body/r43d6bce2bb684bf79bff6d8c61fb8f9c'],'Sales Operations'),'robby#.com','josh#.com'))
You can send adaptive cards to team/group/1:1 by getting user id / channel id.please check this docs
Does anyone know of a custom event tracking paramater i can use in Google Tag Manager(Universal Analytics) that can pass along additional information
other than the standard category, label, and action attributes? I can't
use 'value' attribute as that only appears to be a numerical value. I want to
pass along additional text.
I would like to be able to basically pass along a second label attribute.4
Thanks in advance,
Andy
You can send custom dimensions with any interaction hit (pageviews, events etc.). Custom Dimensions are user defined fields that hold a string value. However they do not show up in the standard reports, you would have to set a custom reports that includes your event category, label, action and the custom dimension.
In the Universal Analytis tag template you can set up custom dimensions in the advanced settings ("Add custom dimension", enter the numeric index and enter the value, or macro that holds the value).
If you are a developer yourself, or have access to one, you can also write custom JS to push any variable and value to the dataLayer, in addition to the C, A, and L. For example:
dataLayer.push({event: 'myEvent', category: 'myCategory', action: 'myAction', customVar1: 'customValue'});
Hope that helps!
I have used webshims for html5 form validation in a single page app with multiple pagelets(divs). The forms are not submitted but local javascript is invoked after each conversation and collected data is posted .
Next I iterate over all the fields and reset the values.
Then I take the new user back to the first pagelet having first form for the new conversation. This time even after filling the correct values the border does not turn green.
Note:
However when we select the field and click outside the field without filling it. and then after filling the correct data border turns green.
However when we tried to achieve it programmatically iterating over each field resetting it and using javascript focus method, that did not do the trick.
I am sure I must be missing some thing. would be able to point out what.
Regards
Barman
I'm not sure, what you want to achieve. I would need to see some code. If you change the value programmatically you can update the validation ui with the event refreshvalidityui on the form field. If you want to reset the ui, you can either trigger a reset event on the form or resetvalidityui on the form field
$('input').val('foo').trigger('refreshvalidityui');
or
$('input').val('foo').trigger('resetvalidityui');
or
$('form').trigger('reset');
Please let me know, if this helps.
I want to design a Receipt in flex.
Which control shall I use to display a table if I want to display some table cells without border? I also want to merge cells in the table just as we used to do in Excel.
Can anyone please give me the code to print the Receipt upon the button click?
I would probable use a List control with a customItemRenderer or a textArea with some fancy text formatting. As for giving you the code, I would be happy to provide input to code you have done or point you in the right direction but cant do your work for you. Best of luck.
Please prepare your receipt layout in flex and just check your layout is proper or not. if it proper then put one button and write down the printjob code on click event of the button. be sure at the time of click event please hide the button till printing is done (means upto send method called)
please refer PrintJob Class of ActionScript for your application to get receipt printing through your flex application.
Introduction:
I have a dojox HorizontalRangeSlider UI component. On each side of this control I have a texbox displaying the value of the respective sliders.
Problem:
When I enter a new value in my textbox I can update the internal value of the RangeSlider but the handles do not respond to the change. How can I achieve this?
SOLVED!
An important point is to not set the properties directly but to use the attr(prop, val) function.