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!
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?
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.
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.
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?
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,
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);
}
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?
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