-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Closed
Milestone
Description
Hi,
I have a grid with 2 columns.
col 0 is visible and have a button that change the visibility col 1 visible.
in col 0 the textbox which works fine:
<TextBox Grid.Col="0" VerticalAlignment="Center"
Text="{Binding Model.ComputerName, Delay=2500,
UpdateSourceTrigger=PropertyChanged,
Mode=TwoWay}"
controls:TextboxHelper.ClearTextButton="True"
controls:TextboxHelper.Watermark="{Binding Path=Model.TotalCount,
StringFormat='{} Any ({0})'}" />
and in col 1 i have the same text box (with different text binding property).
the problame is that in col 1 (after visibilty of the grid change to visible) the cleartextbutton doesnt work (it appears but not clearing the text).
if i remove the visibility binding from the grid so both columns will be visible it works.
any ideas for a solution?
thanks.