Unplanned
Last Updated: 19 Jul 2023 11:18 by ADMIN
Created by: Tom
Comments: 20
Category: ImageEditor
Type: Feature Request
31
The image editor is a great start, but missing a critical feature - image drawing / annotation. The ability to draw lines, shapes or text onto an image. Should allow this to be done when pinch / zoom is in progress. Items drawn should be amendable until saved. Opportunity to retrieve the annotation only data separately to the image so you can preserve the original.
Unplanned
Last Updated: 13 Jul 2023 15:04 by ADMIN
Created by: Will Ngo
Comments: 1
Category: ListView
Type: Bug Report
0

Go to QSF ListView->selection example 
1. Select the 2nd row and swiped it to the left
2. While the row above is still in the left-swiped mode with its red delete button still visible, click on a DIFFERENT  row (say the 3rd row) AND scroll the ListView.

Video attached. 

 

Unplanned
Last Updated: 11 Jul 2023 13:12 by Christopher
When RadDataGrid is populated with a DataTable and the columns are reordered, the items (DataRowViews) in the underlying DataView have their items arrays in the original order, not synced with the UI updates in the DataGrid.
Unplanned
Last Updated: 30 Jun 2023 07:19 by Alberto

When changing the view mode from Day to MultiDay or opposite, and having an AppointmentTemplateSelector, exception is thrown on iOS. 

workaround: 

Return the default template when platform is iOS.

if(Device.RuntimePlatform == Device.iOS)

            {

                return default;

            }

Unplanned
Last Updated: 29 Jun 2023 19:34 by Christopher

Provide an option to programmatically reset the ordering of the columns in the DataGrid after reordering them using the Options-> more button

 

There isn't a command which can be used for resetting the column reorder.

Unplanned
Last Updated: 26 Jun 2023 05:48 by Jiri
I need suggestion view wider than entry. Provide SuggestionView width property for AutoComplete. 
Unplanned
Last Updated: 19 Jun 2023 05:56 by Sasi
For example create a 5 minutes appointment. The text is not readable in day multi day view modes. 
Unplanned
Last Updated: 1 Jun 2023 07:56 by HV

When setting LabelTextColor, it does not apply to the chart axis

verticalAxis.LabelTextColor = Android.Graphics.Color.Red;

horizontalAxis.LineColor = Android.Graphics.Color.Red;
Unplanned
Last Updated: 31 May 2023 06:00 by Nathan
Created by: Nathan
Comments: 0
Category: SegmentedControl
Type: Feature Request
0
Provide an option to change the background color of the disabled segment. 
Unplanned
Last Updated: 2 May 2023 14:33 by Mauricio
Created by: Mauricio
Comments: 0
Category: MaskedInput
Type: Bug Report
1

Watermark text is not displayed on Android. 

Workaround: 

set the WatermarkText property in code-behind with some delay:

Device.BeginInvokeOnMainThread(() =>
{
    mask.WatermarkText = "enter e-mail here";
}

Unplanned
Last Updated: 20 Apr 2023 10:27 by ADMIN
LoadOnDemandContext.HideLoadOnDemandLoadingIndicator() needs to be in an async method, otherwise it will keep the indicator visible forever
Unplanned
Last Updated: 19 Apr 2023 10:40 by ADMIN
When having the following scenario: 

Bound SelectedItem = A
Bound Items to the ListPicker.ItemsSource= {B, C, D}
Open picker.
Item B is highlighted.
Do not scroll or tap anything, just press OK

Expected -> SelectedItem = B
Actual -> SelectedItem remains A.


Unplanned
Last Updated: 19 Apr 2023 09:02 by Edoardo

When adding a RadCalendar with Day ViewMode in a TabView and switching tabs, null ref exception is thrown. 

Workaround: Set TabView.IsContentPreserved to True 

Unplanned
Last Updated: 5 Apr 2023 14:45 by JJ
Created by: JJ
Comments: 0
Category: TreeView
Type: Feature Request
1
 implement a cell Swipe-like behavior as exists in the ListView
Unplanned
Last Updated: 5 Apr 2023 13:58 by JJ
Created by: Nicola
Comments: 1
Category: UI for Xamarin
Type: Feature Request
5
The ability to drag and drop items within the same TreeView as well as to another TreeView instance.
Unplanned
Last Updated: 5 Apr 2023 08:10 by Nethra

System.ArgumentOutOfRangeException: Count cannot be less than zero.
Parameter name: count
   at System.String.Remove(Int32 startIndex, Int32 count)
   at Telerik.XamarinForms.Input.MaskedInput.MaskParser.ConstructCandidateTextForMaskTypeRegex(String oldText, Int32 startIndex, Int32 selectionLength, String enteredText, Boolean userDeletes, Int32& insertIndex)
   at Telerik.XamarinForms.InputRenderer.UWP.MaskedInputFormsTextBox.CreateCandidateText(KeyRoutedEventArgs e, Int32& actualInsertIndex)

The issue can be reproduced in SDK Browser application MaskedInput/Features/Regex Mask example IP and email masks when enter symbol like ., @, etc.

 

 

Unplanned
Last Updated: 29 Mar 2023 18:01 by Rodney
Created by: Rodney
Comments: 0
Category: DataGrid
Type: Feature Request
1

Hi Team,

Currently, you have ScrollItemIntoView support. However, that does not work unless you have rows and a reference to the data item.

I need an explicit mechanism to pick a specific X/Y cell position, or at least a column index, that can be scrolled to so that I can have horizontal scrolling capability.

For example, imagine a DataGrid that has only one row, but a 100 columns, I would like to be able to do this:

// Option 1 - Use the ItemsSource column reference
var dataTableColumn = this.myDataTable.Columns[50];
this.MyDataGrid.ScrollIntoView(dataTableColumn);

// Option 2 - Better!  
// This supports any possible data source type
var telerikColumn = this.MyDataGrid.Columns[50];
this.MyDataGrid.ScrollIntoView(telerikColumn);

// Option 3 - Ideal
// Useful for every possible occasion
var x = 5;
var y = 12;
this.MyDataGrid.ScrollIntoView(x, y);

 

Unplanned
Last Updated: 28 Mar 2023 08:27 by James

When having the following code on a button click 

private void Button_Clicked(object sender, System.EventArgs e)
{
       this.chart.Zoom = new Size();
}

The chart zoom is reset first time, but when zooming again and pressing the button, the zoom level does not reset. You have to pan the chart, then zoom reset works. 

This code resets the zoom:

private void OnResetZoomClicked(object sender, EventArgs e)
{
	this.chart.Zoom = new Size(1, 1); // This line is added as a workaround to reset the Zoom level
	this.chart.Zoom = new Size();
}

 

 

Unplanned
Last Updated: 21 Mar 2023 17:27 by Rishik

When the RadShadow is added inside the Xamarin ListView cell, and then when scrolling through the ListView, the content in the cell disappear.

Solution:
Use Telerik Xamarin RadListView control instead. 

Unplanned
Last Updated: 21 Mar 2023 12:55 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 2
Category: Gauges
Type: Bug Report
1
Using a DynamicResource to set the GaugeRange Color property does not work:

<!-- does not work -->
<gauges:GaugeRange Color="{DynamicResource GrayBackgroundColor}" ... />

Using a StaticResource works as expected:

<!-- works -->
<gauges:GaugeRange Color="{StaticResource GrayBackgroundColor}" ... />

Side-Note:
Using DynamicResource for Indicator Fill works as expected.