Hi and thanks in advance.
I want to use the autocomplete in Append mode only and this is the setup of the control:
ItemsSource="{Binding References}"
TextSearchPath="Name" SearchThreshold="3"
ShowSuggestionView="False" SuggestMode="Append"
DisplayMode="Plain" CompletionMode="StartsWith"
NoResultsMessage="No matching references..."
IsClearButtonVisible="True"
SuggestionItemTextColor="{DynamicResource ColorPrimary}"
SuggestionItemSelected="VisitorReferenceAutocomplete_OnSuggestionItemSelected"
FilteredItemsChanged="VisitorReferenceAutocomplete_OnFilteredItemsChanged"
Style="{StaticResource AutocompleteBaseStyle}"
After 3 digits a match is found and the FilteredItemsChanged event is triggered correctly but the cursor inside the textbox goes back to the start position and the name inside the textbox is not autocompleted at all. Moreover...what is the behavior of the clear button? Sometimes it works e and sometimes not, in any case how I can understand that the selection is now empty (FilteredItemsChanged again?).
The Xamarin.Forms version is the last 3.1.0.697729 and the solution targets only android platform (8.1 Oreo, api 27)
Hi
1. I am using SplineAreaSeries to show a line with the area below fill in color.
When my Y values are negative the area filled above the line and not below (see attached image)
I'm aiming to get something which will look closer to this (desired.jpg).
2. Can i use a gradient color for the fill?
Thanks
Roei
Hi
I'm trying to use the annotations. my x axis is date time.
When i try to add CartesianGridLineAnnotation i get the following error:
: The value: '0' provided for the annotation is incompatible with the selected axis.
When I try to add CartesianPlotBandAnnotation my content page is not loaded
when i tried to add CartesianPlotBandAnnotation to axis y which is numeric it worked fine.
Any suggestions? the annotations feature is crucial for my chart implementation.
Thanks
Roei
Hi,
RadMaskedInput does not have any properties of TextAlignment or PlaceholderTextAlignment.
Will these features be supported?
Thanks.
Hi - I was hoping to control the font (size/color/etc) and the format (e.g. use numbers like 1,2,3, etc instead of decimals like 1.0, etc) in the callout labels that appear above a bar series item. Is that possible to do now via the XAML or will it be included in a future release? This would add some shine to the charts that I am creating.
Thanks -
Erik
Hi,
my app crash right at start even before any RadCalendarView is displayed on screen. The first page shown to the user doesn't even contain a calendarView, so my guess is that the app crash during the initializing of the telerik librairy. Everything works fine in emulators, but once I run it on a real device it crash.
My device is a Pixel C with Marshmallow (6.0.1)
Any Idea how to solve this?
com.telerik.widget.calendar.RadCalendarView.onInitializeAccessibilityNodeInfo
RadCalendarView.java - line 1791
java.lang.IllegalArgumentException: Unknown pattern character 'Y'
java.text.SimpleDateFormat.validatePatternCharacter SimpleDateFormat.java:323
java.text.SimpleDateFormat.validatePattern SimpleDateFormat.java:312
java.text.SimpleDateFormat.<
init
> SimpleDateFormat.java:365
java.text.SimpleDateFormat.<
init
> SimpleDateFormat.java:258
com.telerik.widget.calendar.RadCalendarView.onInitializeAccessibilityNodeInfo RadCalendarView.java:1791
android.support.v4.view.ViewCompatICS.onInitializeAccessibilityNodeInfo ViewCompatICS.java:56
I have added the Telerik control for rad autocomplete to my project and given it a list of objects.
The trouble is, when I am debugging my project, I keep getting the output: "[0:] Could not load image named: {0}:"
I am not looking to add images to the list; the objects do not have images; and I am not adding images to the suggestion item template.
I even get this issue when I made a list of strings for the control to search for.
01.
<
telerikInput:RadAutoComplete
x:Name
=
"SearchControl"
Watermark
=
"Search..."
02.
HorizontalOptions
=
"FillAndExpand"
Margin
=
"10,0,0,0"
03.
TextSearchPath
=
"SearchByThis"
04.
CompletionMode
=
"Contains"
>
05.
<
telerikInput:RadAutoComplete.SuggestionViewHeight
>
06.
<
OnPlatform
x:TypeArguments
=
"x:Double"
Android
=
"200"
WinPhone
=
"400"
iOS
=
"400"
/>
07.
</
telerikInput:RadAutoComplete.SuggestionViewHeight
>
08.
<
telerikInput:RadAutoComplete.SuggestionItemTemplate
>
09.
<
DataTemplate
>
10.
<
telerikInput:RadAutoCompleteLabel
FontSize
=
"18"
HighlightColor
=
"Black"
11.
TextColor
=
"Silver"
VerticalOptions
=
"Center"
/>
12.
</
DataTemplate
>
13.
</
telerikInput:RadAutoComplete.SuggestionItemTemplate
>
14.
</
telerikInput:RadAutoComplete
>