Unplanned
Last Updated: 26 Feb 2018 10:33 by ADMIN
When you have set a custom palette in order to modify the colors of the chart, the Palette property of the series.Style does not represent the custom palette.

Unplanned
Last Updated: 18 Jul 2017 13:17 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: UI for Xamarin
Type: Feature Request
0
Currently, you need to create a separate class for each binding. We should consider improving the behavior so that no such overhead is required from the users.
Unplanned
Last Updated: 26 Jul 2017 06:18 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: UI for Xamarin
Type: Feature Request
0
Currently, the parameter names are not descriptive but names like p0, p1, etc. are being used.
Unplanned
Last Updated: 21 Jul 2017 10:08 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: UI for Xamarin
Type: Feature Request
0
Add view mode showing Quarters, just like the month view mode.
Unplanned
Last Updated: 20 Apr 2020 09:12 by ADMIN

Use the following code to reproduce the behavior described in the issue title:

<telerikInput:RadButton BorderThickness="10,0,0,0" BorderColor="Blue" Clicked="RadButton_Clicked"/>

private void RadButton_Clicked(object sender, EventArgs e)
{
  RadButton btn = (RadButton)sender;
  if (btn.BorderColor == Color.Blue)
  {
    btn.BackgroundColor = Color.Yellow;
    btn.BorderColor = Color.Red;
  }
  else
  {
    btn.BorderColor = Color.Blue;
    btn.BackgroundColor = Color.Cyan;
  }
}

Expected Result:

Both the BackgroundColor and BorderColor change without any changes to BorderThickness.

Observed Result:

The RadButton's border disappears. Note that even if I programmatically set BorderThickness in the same click event, it is still not visible again.

 

This is reproducible using 2020.1.318 and minimum required dependencies on Android.

Unplanned
Last Updated: 19 Mar 2020 09:49 by ADMIN
If DataGrid is placed inside Grid Row with "*" Height inside RadPopup, the layout of the control is broken when user enters edit mode.  As soon as the keyboard is shown, the DataGrid disappear.
Unplanned
Last Updated: 27 Feb 2018 10:46 by ADMIN
Unplanned
Last Updated: 26 Feb 2018 10:26 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 1
Category: UI for Xamarin
Type: Bug Report
0
An exception is thrown when the AutoComplete is hosted inside a horizontal StackLayout.
Unplanned
Last Updated: 25 Oct 2017 12:55 by ADMIN
Currently, the native wrappers are suited to work directly with classes that implement Java.Lang.Object and customers should provide such in common scenarios. We should consider improving the wrappers so all of them can work directly with CLR objects.
Unplanned
Last Updated: 26 Feb 2018 10:25 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: UI for Xamarin
Type: Bug Report
0
If the control is hidden when initializing and then on a later stage is visualized, it hangs.
Unplanned
Last Updated: 26 Feb 2018 10:46 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: UI for Xamarin
Type: Bug Report
0
Workaround: Use the Small Percentage(http://www.fileformat.info/info/unicode/char/FE6A/index.htm) or Fullwidth Percent Sign(http://www.fileformat.info/info/unicode/char/ff05/index.htm).
Unplanned
Last Updated: 26 Feb 2018 10:46 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: UI for Xamarin
Type: Feature Request
0

			
Unplanned
Last Updated: 14 May 2019 13:33 by ADMIN
Created by: Uday
Comments: 0
Category: UI for Xamarin
Type: Feature Request
0
Unplanned
Last Updated: 23 Apr 2019 13:15 by ADMIN
Add a new control to the Xamarin suite that will take pictures using the device camera
Unplanned
Last Updated: 15 Jan 2019 15:44 by ADMIN
Created by: Mano Sadeh
Comments: 0
Category: UI for Xamarin
Type: Bug Report
0
When the Mask property is set to letters and digits, the Mask accepts symbols too.
Unplanned
Last Updated: 21 Jun 2018 13:11 by ADMIN
Unplanned
Last Updated: 29 May 2018 09:57 by ADMIN
Mapping of editor between JSON Schema and DataForm Editor:

DataFormAutoCompleteEditor:  autocomplete
DataFormBooleanEditor:   N/A
DataFormCheckBoxEditor:   checkbox
DataFormCustomEditor:   n/a
DataFormDateEditor:    datepicker
DataFormDateTimeEditor:   n/a
DataFormTimeEditor:    timepicker
DataFormDecimalEditor:   decimal
DataFormEmailEditor:   email
DataFormIntegerEditor:   integer
DataFormListViewEditor:   list
DataFormMultilineTextEditor: n/a
DataFormNumberPickerEditor:  numberpicker
DataFormPasswordEditor:   password
DataFormPhoneEditor:   phone
DataFormRadAutoCompleteEditor: n/a
DataFormRadioGroupEditor:  radio
DataFormSeekBarEditor:   seekbar
DataFormSegmentedEditor:  segmentededitor
DataFormSpinnerEditor:   picker
DataFormSwitchEditor:   switch
DataFormToggleButtonEditor:  n/a
DataFormTextEditor:    text 
Unplanned
Last Updated: 15 Jun 2018 08:13 by ADMIN
AddEditorForProperty method is not respected, the default editor is used instead. 

As a workaround, please use SetEditorProvider method  (https://docs.telerik.com/devtools/xamarin/nativecontrols/android/dataform/dataform-features) in order to create custom editors.
Unplanned
Last Updated: 03 Aug 2018 08:19 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: UI for Xamarin
Type: Bug Report
0
SlidedToIndex event is triggered from a non-UI thread which forces the users to use Device.BeginInvokeOnMainThread
1 2 3 4 5 6