String constants as an Action Parameter failed when a comma is included
See original GitHub issueHi, i am trying to access the string in my viewmodel
<Image Source="info.png" cal:Message.Attach="[Event MouseEnter]=[Action MouseOverCallOut('By default, This will be selected')]" Margin="5,0,5,0" />
In my viewmodel
this Event not triggering
public void MouseOverCallOut(string callOutText)
{
CallOutMsg = callOutText;
}
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Variables with Parameters when the value has a comma ","
I will show how I do it. Create variable, determine all necessary parameters, use replace() function for parameter witch potentially could have ...
Read more >java - Unwanted comma-separated arguments to Spring ...
I'm seeing a strange problem with a Spring MVC controller. This method is intended to set the password. It takes two form parameters...
Read more >Using conditional statements in runbooks
In the following example, the first choice evaluates if a parameter string is Windows and if the output from an AWS Lambda step...
Read more >Parameters - AWS CloudFormation
An array of literal strings that are separated by commas. The total number of strings should be one more than the total number...
Read more >Trailing commas - JavaScript - MDN Web Docs
JavaScript allows trailing commas wherever a comma-separated list of values is accepted and more values may be expected after the last item.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yup that would work as a work around,
thanks for your value information and time