Telerik Forums
UI for Xamarin Forum
6 answers
254 views

HI,

Where can I download the complete source for the libs (not the example source code)? I cannot find it in the *.zip or *.msi installation.

Thank you!

Lance | Senior Manager Technical Support
Telerik team
 answered on 12 Feb 2018
3 answers
191 views

Hi, I got a CellSwipe that change the status of one item.

Ex: Item1.Status = "toto";

So when Item is swaped, I change the status, save it in my offline local DB then do a OnlineSync for Azure. The item is correctly changed in BD (local and server), but how do I update the item in the listview without reloading from local DB and update the collection himself?

Lance | Senior Manager Technical Support
Telerik team
 answered on 10 Feb 2018
2 answers
129 views

Hi,

 

I was trying to replace the 'X' image in 'CloseButton' for the Token, but I cannot remove the original image

This is my code inside of TKAutoCompleteDelegate class:

 

public class TKAutoCompleteDelegateWrap : TKAutoCompleteDelegate
    {
        //public List<UserAndGroupResult> UserToSendList { get; set; }

        public override void DidAddToken(TKAutoCompleteTextView autocomplete, TKAutoCompleteToken token)
        {
            var t = ((TKSuggestionListView)autocomplete.WeakSuggestionView).SelectedIndexPath;
            var tt = t.Row;

            var tt1 = (TKAutoCompleteTokenWrap)token;
            Console.Write(tt1.Id);
            ((TKListView)autocomplete.WeakSuggestionView).ScrollToItem(((TKSuggestionListView)autocomplete.WeakSuggestionView).SelectedIndexPath, UICollectionViewScrollPosition.Top, true);
        }
        public override void DidSelectToken(TKAutoCompleteTextView autocomplete, TKAutoCompleteToken token)
        {
            Console.WriteLine();
        }

        public override void DidAutoComplete(TKAutoCompleteTextView autocomplete, TKAutoCompleteToken token)
        {
            
        }
        public override void DidRemoveToken(TKAutoCompleteTextView autocomplete, TKAutoCompleteToken token)
        {
            
        }

        public override TKAutoCompleteTokenView ViewForToken(TKAutoCompleteTextView autocomplete, TKAutoCompleteToken token)
        {
            TKAutoCompleteTokenView tokenView = new TKAutoCompleteTokenView(token);

            tokenView.BackgroundColor = GlobalUI.LABEL_TEXT_COLOR_DARK;
            tokenView.TextLabel.Font = UIFont.FromName(GlobalUI.FONT_NEXT, 15);
            tokenView.TextLabel.TextColor = StyleKit.White;

            tokenView.Layer.CornerRadius = 5;
            tokenView.ImageView.Layer.CornerRadius = 3;

            TKAutoCompleteTokenRemoveButton _closeBtn = (TKAutoCompleteTokenRemoveButton)tokenView.RemoveButton; 
            _closeBtn.SetImage(StyleKit.ImageOfX_Ico_White(new CGSize(10,10)), UIControlState.Normal);
         
            return tokenView;
        }

    }

 

So, The attached file is showing that I am getting two images over one other.

 

how can I do to fix that?

 

Thanks.

 

 

 

Andy
Top achievements
Rank 1
 answered on 09 Feb 2018
1 answer
136 views

Is this currently possible, and if so how? 

 

I assumed I could Create the RadTabView, and for each of my tabs have a separate dataform, and just create code like this?

 

        <telerikInput:RadDataForm.Source>
            <local:SourceItem />
        </telerikInput:RadDataForm.Source>
    </telerikInput:RadDataForm>

 

However, my compiler errors out saying 'local' is an underclared prefix.

Lance | Senior Manager Technical Support
Telerik team
 answered on 08 Feb 2018
3 answers
300 views
When Im using telerik.Xamarinforms.Datagrid. Dll   getting  system. TypeloadException
Lance | Senior Manager Technical Support
Telerik team
 answered on 07 Feb 2018
4 answers
172 views

Hi, here is the log:

Java.Lang.NoClassDefFoundError: Failed resolution of: Lcom/telerik/widget/calendar/R$dimen; ---> Java.Lang.ClassNotFoundException: Didn't find class "com.telerik.widget.calendar.R$dimen" on path: DexPathList[[zip file "/data/app/TelerikXamarinApp3.Android-1/base.apk"],nativeLibraryDirectories=[/data/app/TelerikXamarinApp3.Android-1/lib/arm, /system/fake-libs, /data/app/TelerikXamarinApp3.Android-1/base.apk!/lib/armeabi-v7a, /system/lib, /vendor/lib]]

 

And the same problem occurs when I tap the ListView and maybe both in the other control, It looks like the JNI can not find the java telerik library.

Could some one help me?

YUANTAO
Top achievements
Rank 1
 answered on 07 Feb 2018
6 answers
126 views

On your Telerik UI for Xamarin page, the link for "Document And API Reference" linked to Telerik UI for "NativeScript", instead of Xamarin

Is there Xamarin controls API document?

Thanks,

Lance | Senior Manager Technical Support
Telerik team
 answered on 05 Feb 2018
3 answers
194 views

I create a form but always when it is rendered the text is cut (Eg:  Número = N)

The Header text only returns to the correct value when I get focus from a TextEdit ( Descrição )  .

See the attached image.

[DisplayOptions(Group = "Onde", PlaceholderText = "Número", Header = "Número", Position = 0, ColumnPosition = 4)]
public string Numero
{
    get { return _Numero; }
    set
    {
        if (value != _Numero)
        {
            _Numero = value;
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs("Numero"));
            }
        }
    }
}
public EventoView()
{
   InitializeComponent();
 
   _evento = new Evento();
 
   this.BindingContext = _evento;
 
   this.dataForm.RegisterEditor(nameof(Evento.Numero), EditorType.TextEditor);
        
}
Yana
Telerik team
 answered on 05 Feb 2018
4 answers
125 views

Hi, currently I'm on Xamarin Forms 2.4, and the Telerik controls are working fine. I would like to update to Xamarin Forms 2.5, though. Will the Telerik controls work with XF 2.5? If not, is there a target date for that?

Lance | Senior Manager Technical Support
Telerik team
 answered on 02 Feb 2018
3 answers
852 views

Hi,

 

I'm trying to implement a scenario where I can add remove tabs dynamically. 

The tabs items would be defined in the XAML, however, depending on the results of a rest call they would be removed.

I know I can remove them via the Items object in the tab view but could a re-add the removed item again without having to provide a new definition?

I was thinking of a possible backup list and to use that, however, I'm not a huge fan of that implementation.

 

Thanks,

 

John

Lance | Senior Manager Technical Support
Telerik team
 answered on 02 Feb 2018
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?