Hi,
is it possible to align the checkboxes to the right off the screen. At the moment is proven difficult for some user with big finger to tap the checkbox and they end up collapsing the item.
Thank you.
Hernando .
hi
When i set background color of RadEntry it appear as square, rounded border is inside of square.
how to set background color under rounded border (without exceeding borders)
Hi,
I'm populating a list from the database using RadLIstView and trying to group the populated list of items by previous day, today and tomorrow. I'm calculating these 3 categories by an attribute Date which I'm getting from database. Is There any way to pass all three calculated categories in the list and group them accordingly. Please let me know if there are any properties in RadListView.
Hi there
We are using custom font in our entire app. but when we tried to set up custom font for RadEntry, seems like it is not working but it is working fine for xamarin forms 'entry'. For android our 'Fonts' folder is inside of asset folder & in ios it is inside Resource folder
<input:BorderStyle x:Key="EntryBorderStyle"
BorderThickness="0,0,0,2.2" BorderColor="#A9A9A9" />
<Style TargetType="input:RadEntry">
<Setter Property="BorderStyle" Value="{StaticResource EntryBorderStyle}"/>
<Setter Property="WatermarkTextColor" Value="#A9A9A9"/>
<Setter Property="Margin" Value="0,0,0,6"/>
<Setter Property="Padding" Value="0,0,0,5"/>
<Setter Property="FontSize" Value="Medium"/>
<Setter Property="FontFamily">
<Setter.Value>
<OnPlatform x:TypeArguments="x:String"
Android="Fonts/Lato-Regular.ttf#Lato"
iOS="Fonts/Lato-Regular"/>
</Setter.Value>
</Setter>
<Setter Property="FontSize" Value="Medium"/>
</Style>
Hallo,
i have a stack with 2 Checkboxes YES/NO i want only check one Checbox.
i use mvvm i can not handle the CheckedChange event to uncheck the other Checkbox if Checked.
may be using Commands or something can u give me please a example?
Thanks
Hi,
I am playing around with the PopUp but I have several basic issues:
Best regards,
Hi,
Do you hve a sample project that is present in google play / app store that represents xamarin forms? we wnat to evaluate the tools first before we purhcase it..
thanks
Hello,
I have a RadDataGrid which has 2 text columns and a template column which has a switch inside it. What I'm trying to achieve is, when I click a button, that's below the grid, I want to get all the grid's data in the code behind and handle it according to the corresponding switch's status. How can I get the row data in code?
<
telerikGrid:RadDataGrid
x:Name
=
"dataGrid"
AutoGenerateColumns
=
"False"
>
<
telerikGrid:RadDataGrid.SelectionStyle
>
<
telerikGrid:DataGridBorderStyle
BackgroundColor
=
"#ffc46d"
/>
</
telerikGrid:RadDataGrid.SelectionStyle
>
<
telerikGrid:RadDataGrid.AlternateRowBackgroundStyle
>
<
telerikGrid:DataGridBorderStyle
BackgroundColor
=
"#ffc46d"
/>
</
telerikGrid:RadDataGrid.AlternateRowBackgroundStyle
>
<
telerikGrid:RadDataGrid.Columns
>
<
telerikGrid:DataGridTextColumn
SizeMode
=
"Stretch"
PropertyName
=
"StandardCode"
HeaderText
=
"{i18n:TranslateExtension StandardCode}"
>
<
telerikGrid:DataGridTextColumn.HeaderStyle
>
<
telerikGrid:DataGridColumnHeaderStyle
HorizontalTextAlignment
=
"Center"
TextColor
=
"Black"
TextFontAttributes
=
"Bold"
/>
</
telerikGrid:DataGridTextColumn.HeaderStyle
>
<
telerikGrid:DataGridTextColumn.CellContentStyle
>
<
telerikGrid:DataGridTextCellStyle
TextColor
=
"Black"
VerticalTextAlignment
=
"Start"
HorizontalTextAlignment
=
"Start"
>
</
telerikGrid:DataGridTextCellStyle
>
</
telerikGrid:DataGridTextColumn.CellContentStyle
>
</
telerikGrid:DataGridTextColumn
>
<
telerikGrid:DataGridTemplateColumn
SizeMode
=
"Fixed"
Width
=
"150"
HeaderText
=
"{i18n:TranslateExtension Status}"
>
<
telerikGrid:DataGridTemplateColumn.HeaderStyle
>
<
telerikGrid:DataGridColumnHeaderStyle
HorizontalTextAlignment
=
"Center"
TextColor
=
"Black"
TextFontAttributes
=
"Bold"
/>
</
telerikGrid:DataGridTemplateColumn.HeaderStyle
>
<
telerikGrid:DataGridTemplateColumn.CellContentTemplate
>
<
DataTemplate
>
<
StackLayout
HorizontalOptions
=
"Center"
>
<
Switch
></
Switch
>
</
StackLayout
>
</
DataTemplate
>
</
telerikGrid:DataGridTemplateColumn.CellContentTemplate
>
</
telerikGrid:DataGridTemplateColumn
>
<
telerikGrid:DataGridTextColumn
SizeMode
=
"Auto"
PropertyName
=
"StandardName"
HeaderText
=
"{i18n:TranslateExtension StandardName}"
>
<
telerikGrid:DataGridTextColumn.HeaderStyle
>
<
telerikGrid:DataGridColumnHeaderStyle
HorizontalTextAlignment
=
"Start"
TextColor
=
"Black"
TextFontAttributes
=
"Bold"
/>
</
telerikGrid:DataGridTextColumn.HeaderStyle
>
<
telerikGrid:DataGridTextColumn.CellContentStyle
>
<
telerikGrid:DataGridTextCellStyle
TextColor
=
"Black"
VerticalTextAlignment
=
"Start"
HorizontalTextAlignment
=
"Start"
FontSize
=
"12"
>
</
telerikGrid:DataGridTextCellStyle
>
</
telerikGrid:DataGridTextColumn.CellContentStyle
>
</
telerikGrid:DataGridTextColumn
>
</
telerikGrid:RadDataGrid.Columns
>
</
telerikGrid:RadDataGrid
>
Hi, how I can hide the overlay keyboard from appearing after set the focus oin the NumericInput.
For now I try with Depedency on cross platform without success
RadNumericInput ntb = Qte
as
RadNumericInput;
if
(ntb !=
null
)
{
ntb.Focus();
var key = Xamarin.Forms.DependencyService.Get<IForceKeyboardDismissalService>();
key.DismissKeyboard();
}
then on droid:
[assembly: Xamarin.Forms.Dependency(
typeof
(AndroidForceKeyboardDismissalService))]
namespace
KelvinMobile.Droid
{
public
class
AndroidForceKeyboardDismissalService : IForceKeyboardDismissalService
{
public
void
DismissKeyboard()
{
InputMethodManager imm = InputMethodManager.FromContext(CrossCurrentActivity.Current.Activity.ApplicationContext);
imm.HideSoftInputFromWindow(CrossCurrentActivity.Current.Activity.Window.DecorView.WindowToken, HideSoftInputFlags.NotAlways);
}
}
}
The call work, but the keyboard still there...