Hi,
I am looking to be able to make my data grid to be able to rotate to be in a portrait position. Anyway this is possible, or any suggestions on other Telerik controls to use for this?
Thanks
Hello everyone.
Since the richtexteditor control now supports setting a selection range programmatically, by the method EditBox.SelectionRange = new RichTextSelectionRange(startPosition,endPosition);
I just need to know how to insert specified plain text or html code at the current selected range or cursor position?
I guess probably I can achieve this by invoking javascript, but the webView.EvaluateJavaScriptAsync("<Your JS goes here>") not seems to be exposed.
Thank you.
Hi,
When a CombBox is placed next to a vertically centered label the text in the CombBox does not align vertically which produces a bad look.
The TimePicker by comparison looks good. Also the left alignment of the text in the TimePicker also looks better.
Can the CombBox be reworked to center the text and have a more consistent layout with other controls?
Regards
Anthony
Is it possible to have more than one RadPopup on a page? When I try to add a second popup I get an "The property 'Popup' is set more than once." error when trying to build.
telerikPrimitives:RadPopup.Popup
<!-- Loading Overlay -->
<
telerikPrimitives:RadPopup.Popup
>
<
telerikPrimitives:RadPopup
x:Name
=
"loadingPopup"
IsOpen
=
"{Binding IsBusy}"
IsModal
=
"True"
OutsideBackgroundColor
=
"#6FFFFFFF"
Placement
=
"Center"
>
<
StackLayout
HorizontalOptions
=
"Center"
VerticalOptions
=
"Center"
>
<
ActivityIndicator
IsRunning
=
"true"
/>
</
StackLayout
>
</
telerikPrimitives:RadPopup
>
</
telerikPrimitives:RadPopup.Popup
>
<!-- New Log Entry Overlay -->
<
telerikPrimitives:RadPopup.Popup
>
<
telerikPrimitives:RadPopup
x:Name
=
"newLogEntryPopup"
IsOpen
=
"{Binding ShowNewLogEntryPopup}"
IsModal
=
"True"
OutsideBackgroundColor
=
"#6FFFFFFF"
Placement
=
"Center"
>
<
StackLayout
HorizontalOptions
=
"Center"
VerticalOptions
=
"Center"
>
<
Frame
BackgroundColor
=
"White"
HasShadow
=
"True"
>
<
Label
TextColor
=
"{StaticResource NavigationPrimary}"
FontSize
=
"20"
Margin
=
"0,0,0,15"
>Enter New Reading</
Label
>
</
Frame
>
</
StackLayout
>
</
telerikPrimitives:RadPopup
>
</
telerikPrimitives:RadPopup.Popup
>
I am working on styling the display label. My hope is to get it to look like nearly identical to an RadEntry.
I have actually gotten pretty close, but one thing missing is a border. ListPicker has a BorderColor property, but this does not actually put a border around the label, it is just an underline. Is there a way to get an actual border without having to wrap the control inside a actual Border control?
Thanks
-Joe
Hi,
When the user opens the picker for the first time, is there any way to have it default to the current time?
I know I can set DefaultHighlightedTime but the user may spend some minutes in the screen before they select a time so the DefaultHighlightedTime is no longer the current time and is a few minutes ago.
Regards
Anthony
Hi,
I have developed an Xamarin application that in Modal show a pdf in a PdfViewer.
PdfViewerPage pdfViewer =
new
PdfViewerPage(item.IdAllegato, item.Path, item.FlagScaricabile);
Navigation.PushModalAsync(pdfViewer);
When the Modal is open, I assign a url to the PdfViewer source.
pdfViewer.Source =
new
Uri(uri);
Everything is fine when I run the android app on debug mode, but when I run in release mode the PdfViewer show this message: "an error occurred while loading the document"