In a Xamarin.Forms UWP project, I have a dark background color on my page. I've used the following code for a username entry:
<telerikInput:RadEntry x:Name="UsernameEntry" WidthRequest="100" BorderStyle="{StaticResource EntryBorderStyle}" TextColor="White" BackgroundColor="Transparent" FontSize="30" Focused="IsFocus"/>
When I focus on the entry to type, the typed characters are black, and when unfocused, they turn to white. I want them to always be white, as the black is hard to read against the background color.
I tried the following:
public void IsFocus(object sender, EventArgs e)
{
var obj = (Telerik.XamarinForms.Input.RadEntry)sender;
obj.TextColor = Color.White;
}
.. but this seems to have no effect either. Any suggestions on how I can keep the focused and unfocused TextColor consistent?
In the attached screenshot "calendar.png" Android Emulator correctly renders appointments that are at the same time side by side. Just like iOS
On all of our large-screen or small-screen Android test devices (see attachment "phone.png"), the calendar shows the appointments on top of each other, hiding the appointments.
Is there a way to force Android to behave the same as the emulator and iOS (side by side appointments)
Good Day All
i am doing load on demand , it works well . i have 365 records which i load in 100's , i press the load more button ,it loads the first 100 and i do it again it loads the second 100 and when i do the third it loads again but now the text color and the grid styles get lost. but now you can see its scrolling there are still records in the grid but the text color i the same as the background. i tried to set the row style to a different color but still . i can even select the records from the invinsible records. what could that be ?
Hi
I am using Range mode for Tkclalendar in xamarion.iOS app . I have been using custom cell as per documentation and facing few issues as below.
1. How do I deselect or undo the selected date?
2. When in range mode if I need to select single date ,How could it achieved?
Please provided any way to make it work?
Thanks,
Avinash
In the attached screenshot of a calendar, in iOS you can see the appointment "Mobile Team - Daily" is correctly rendered as 1/4 of an hour as it is 15 min long.
Android however renders it as 1/2 of the hour space which users think is 30 minutes.
Is this a bug?
We have a problem with only the Android version, iOS is fine.
On a very complex Cell UI and using a Selector, often the Labels are rendered 1 letter wide. Rotating the device Landscape then Portrait causes a refresh and the labels render fine. Pull-to-refresh will also often fix the issue. The initial render fails.
How can I force the RadListView to recalculate the layout of the cells so that the Labels redraw. I can do that in a timer after the data is loaded. A work around.
On Android, see screenshot, the Current Time link,e "IsCurrentTimeIndicatorVisible" renders only partway across the screen. iOS is fine.
In the attached screenshot, the current time "12:38" is not rendered as a line across the calendar. How can we enable a Current Time line to show the user what time it is?
DisplayDate=
"{Binding CalendarDisplayDate, Mode=TwoWay}"
SelectedDate=
"{Binding SelectedDate, Mode=TwoWay}"
But for some reason when I swipe the calendar to the next month, the circle is just visible for a second or so and then it disappears. I have also set those properties when the user swipes the calendar like this:
public
override
void
DidNavigateToDate(TKCalendar calendar, NSDate date)
{
var dateTime = date.ToDateTime();
if
(Element ==
null
)
{
return
;
}
Element.SelectedDate =
new
DateTime(dateTime.Year, dateTime.Month, 1);
Element.DisplayDate =
new
DateTime(dateTime.Year, dateTime.Month, 1);
Element.LoadMonthAppointmentsCommand.Execute(
null
);
}
Here is a short video:
GIF
Hey Guys, I've been working with dataforms and I have it close but not quite to the spec I'm trying to achieve. Attached is a "SignUp" screen and I'm using your "Reservation" renderer on iOS. There are two things missing from my render that I need help with. First, I'd like to put a full boarder around each field. Second, I'd like the fields to align on the left near their icons and span across the white space. I'm adding my login screen because it has the fields look and feel that I'm trying to match. If you can point me to the documentation or any additional samples that show this I would greatly appreciate it.
Attached:
SignUp - Needs help
Login - The look I'm trying to achieve...
Thank you!
Brian