We going to move our existing Mashups from Smart Office til H5 (13.4 on premise) and i'm starting to get to know the changes between Mashups and Web Mashups. When creating Smart Office Mashups i'm used to get value from elements with for instance {Binding ElementName=InputValue, Path=Text} but i can't get that to work.
I havent been able to find any examples or documentation on creating H5 Web Mashups.
If there are any one out there with a solution for my issue I would be happy. And if any one has som eH5 Web mashup examples I would be gratefull to see if.
Im trying with the code below:
<Grid.ColumnDefinitions>
<ColumnDefinition Width="150" />
<ColumnDefinition Width="150" />
<ColumnDefinition Width="150" />
<ColumnDefinition Width="1*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="1*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<TextBox Grid.Row="1" Grid.Column="0" Name="InputValue" Text="123456" />
<Button Grid.Row="1" Grid.Column="1" Name="ButtonSetValue" Content="Set Value">
<Button.CommandParameter>
<mashup:Event SourceEventName="Click" Target="{mashup:SetProperty ElementName=OutputValue, Path=Text}">
<mashup:Parameter TargetKey="Value" Value="{Binding ElementName=InputValue, Path=Text}" />
</mashup:Event>
</Button.CommandParameter>
</Button>
<TextBox Grid.Row="1" Grid.Column="2" Name="OutputValue" />
<ui:StatusBar Grid.Row="3" Grid.Column="0" Name="StatusBar" Grid.ColumnSpan="4" />
</Grid>