1
Answer

Angular JS

abhi lash

abhi lash

9y
291
1
I want to create Inline editing for user profile page How to do in Angular js Please help me
Answers (1)
0
person

person

NA 96 0 15y
Sanjay,

Thanks for the reply it helped significantly!!

Urema.
0
Sanjay Chauhan

Sanjay Chauhan

NA 461 0 15y

 Hi,

<StackPanel  Grid.Row="1" Grid.Column="1" Background="RoyalBlue" Height="400"  ScrollViewer.VerticalScrollBarVisibility="Auto">


           <ItemsControl x:Name="lstPics" ItemsSource="{Binding}" Height="400" SelectionChanged="lstPics_SelectionChanged" ScrollViewer.VerticalScrollBarVisibility="Visible">
                <ItemsControl.ItemTemplate>

                    <DataTemplate>
<StackPanel Orientation="Horizontal">
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding Path=FileName}" />
<CheckBox IsChecked="{Binding Path=IsSavedInServer}" Content="exist in server" />
</StackPanel>
<Image Source="{Binding Path=ImageSource}" Height="100" Width="150" Stretch="Fill" />
</StackPanel>
</DataTemplate>
</ItemsControl.ItemTemplate> </ItemsControl >
</StackPanel>
Put the

ScrollViewer.VerticalScrollBarVisibility="Auto"

For vertical scrollbar. Check the above code.