Hi,
How do I insert a pop-up balloon (similar to a tooltip but will be inserted as a row) inside the XamGrid?
I would need to achieve something as pictured in this link:
https://ibb.co/hhgoWQ
Thanks!
Hello,
I'm glad you have resolved your issue.
If you have any other questions, please do not hesitate to ask.
Thank you,Mihoko Kamiishi
thansk! I got it working already.
Hello Erika,
Thank you for your feedback.
As far as your Expander issue goes, I haven't been able to reproduce the problem you described on my side.
I have attached the sample project I used to test this.Please test this on your environment and let me know if it works or not.
Please note that I removed the style "DetailsExpanderStyle" from Expander since I don't know how it's implemented on your end.
Thanks for you help.
Hi! Your sample code was helpful. I was able to make it work. I have one more question though. It's not related but you might know the answer.
My XamGrid is within an expander, so I am setting the row definition's height to Auto and setting a height to the grid:
<Grid Grid.Column="2" Grid.Row="3" Grid.RowSpan="11" VerticalAlignment="Top" HorizontalAlignment="Left">
<Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="30"/> <RowDefinition Height="20"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto"/> </Grid.ColumnDefinitions>
<Expander HorizontalAlignment="Left" Grid.Row="0" VerticalAlignment="Top" IsExpanded="True" Style="{StaticResource DetailsExpanderStyle}" Margin="0,5,0,0" ScrollViewer.HorizontalScrollBarVisibility="Hidden">
<ig:XamGrid ItemsSource="{Binding GridViewModel.ItemsLoadedInGrid}" AutoGenerateColumns="False" BorderThickness="0" Margin="15,10,0,0" Background="Transparent" Height="250">
...
However, I am getting a horinzontal scrollviewer with a rectangle such as the image below:
https://ibb.co/dWB5D5
How do I get rid of the the items in red (scrollviewer + rectangle)?