Where to find samples.core project

Hi,
I really would like to provide the same feature in my app of the filter / option you show in some views.
Then I would like to see the code.
Where can I find the github link of thesamples.core project please?

6 Replies 1 reply marked as answer

SS SaiGanesh Sakthivel Syncfusion Team November 9, 2020 12:14 PM UTC

Hi Alexis,  

Thank you for
using syncfusion products.

We would like to inform you that have already published the KB about “How to use filter in Xamarin.forms SfListview”. You can also refer from the following
link, 
 
 
   
We hope this helps. Please let us know if you need further assistance. 
 
Regards,  
SaiGanesh Sakthivel  


Marked as answer

AL Alexis November 9, 2020 02:55 PM UTC

Hi,

I don't want to have a filter on my listview but what you propose in your demo app.

And I can't find the link or how to do it.

Do you use a sfpopupview?






SS Suganya Sethuraman Syncfusion Team November 10, 2020 11:35 AM UTC

Hi Alexis,

That is a simple navigation page where we have populated radio buttons, and when we tap the apply button, we have made the logic of filtering.

Please let us know if you have any concerns.

Regards,
Suganya Sethuraman.
 



AL Alexis November 10, 2020 12:08 PM UTC

Ok perfect and for this one?




SS Suganya Sethuraman Syncfusion Team November 11, 2020 01:46 PM UTC

Hi Alexis,

We are currently validating on this with high priority and we will update the details on or before November 16th, 2020. We appreciate your patience until then.

Regards,
Suganya Sethuraman.  
 



SS Suganya Sethuraman Syncfusion Team November 17, 2020 10:53 AM UTC

Hi Alexis,

Sorry for the inconvenience.

We have analyzed the reported query. PropertyView is just a ContentView, which is added to an absolute layout.

Code Snippet
 
<AbsoluteLayout> 
    <ContentView x:Name="propertyView" BackgroundColor="Transparent" AbsoluteLayout.LayoutFlags="All"> 
    <Grid RowSpacing="0" ColumnSpacing="0"> 
        <Grid.RowDefinitions> 
            <RowDefinition Height="50" /> 
            <RowDefinition Height="1" /> 
            <RowDefinition Height="*" /> 
        </Grid.RowDefinitions> 
        <Label Grid.Row="0" x:Name="propertyLabel" Text="    Properties" TextColor="Gray" BackgroundColor="#f3f2f2" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" VerticalTextAlignment="Center" HorizontalTextAlignment="Start" FontSize="18" /> 
        <BoxView BackgroundColor="#cecccc" HorizontalOptions="FillAndExpand" Grid.Row="1" /> 
        <ScrollView x:Name="propertyContent" IsClippedToBounds="true" Padding="20,5" Grid.Row="2" BackgroundColor="White" Orientation="Vertical" /> 
    </Grid> 
</ContentView> 
</AbsoluteLayout> 

Please let us know if you have any other queries.

Regards,
Suganya Sethuraman.
 


Loader.
Up arrow icon