Hello
is it possible to change the position of the month name and put it as the title of the activity, like in google agenda .?
Hi,
We are trying now Telerik for Xamarin and we have a build issue:
First, we met the "java.exe" exited with code 2.
Then we activated Multi-Dex, and now we have: "java.exe" exited with code 1.
We are stuck...
The Xamarin Forms android sample doesn't compile in Visual Studio 2013.
Setting the max heap size to 1G does the trick but it would be worth updating the sample as someone new to Xamarin won't know that trick.
HI,
I am trying to define listview ItemSwipeContentTemplate but via C#. Can someone help me convert the XAML declaration here to C# alternate.
http://docs.telerik.com/devtools/xamarin/controls/listview/features/listview-features-cell-swipe
THIS IS WORKING:
<telerikDataControls:RadListView.ItemSwipeContentTemplate><DataTemplate><Grid><Grid.ColumnDefinitions><ColumnDefinition Width="100"/><ColumnDefinition/><ColumnDefinition Width="100"/></Grid.ColumnDefinitions><Button Text="increase" TextColor="White" BackgroundColor="#FF9966" Clicked="IncreaseButtonClicked"/><Button Text="decrease" TextColor="White" BackgroundColor="#66CCFF" Clicked="DecreaseButtonClicked" Grid.Column="2"/></Grid></DataTemplate></telerikDataControls:RadListView.ItemSwipeContentTemplate>
THIS IS NOT WORKING:
Productlist.ItemSwipeContentTemplate = new DataTemplate(typeof(Itemcell));
public class Itemcell : ItemSwipeTemplateCell
{
public Itemcell()
{
Label text = new Label (){Text="Edit" };
this.View = text;
}
}
Hello
i want to make item swipe content template in cs file not in xaml
i tried this
MainList.ItemSwipeContentTemplate = new DataTemplate(() =>
{
var mainGrid = new Grid { ColumnSpacing = 0, RowSpacing = 0, Padding = 0, Margin = 0 };
mainGrid.Children.Add(new Label { Text = "Sign"});
return new ItemSwipeTemplateCell{ View = MainGrid };
});
but it throws nullreferenceexception
i think the problem is in the last line
but what else should i return
i tried a lot of returns but all throws the same exception
please help me ASAP
How do I change the text "ALL-DAY" on the dayview?
Kind regards,
Anders
Hello,
I have a BusyIndicator with a custom animation (an image that I'm rotating). Everything works fine except the animation pauses each time it completes one cycle (I have it rotating from 0 to 360). Is there anyway to disable the pause (I tried setting StartDelay - the only property that seemed relevant - to 0, but that only controls the initial loop not the start of each loop).
I guess I can do a work around by just setting the "to" property to something very large and changing the duration to make the animation happen at the same speed, but I was hoping there was a more elegant solution.
Thanks
I am using the ItemSwipeContentTemplate feature of telerik listview.In IOS, when I swipe the item it is getting swipped but the issue I am facing is it is giving some fixed height to swip-able area where I can trigger some event and leaving the other part of item area empty even though I have given the very much height to grid to cover the full area but it is not doing so. After doing the left swipe, i want to make the full area triggable and want to give the color to full area.
Thanks In Advance.