I am hoping to have a city, state, and name on a page as text box controls. How would I got about setting the datasource to only the results of the other textbox controls if there is a value entered?
So if i have 5 people with the following info
City State Name
Mil WI Tools
Mil IL Tools
Chi WI LLC
Chi IL ORG
La CA LLC
I want to be able to type into the city box
MIL and then if i go to the State or Name on it should only have the values of the top two rows
Hello!
Why does RowFormating event does not override the color for the pinned columns?
It only formats the unpinned columns of the GridView. The RowFormatting code bellow.
Can someone point me in the right direction?
Thank you very much!
Private Sub RadGridView1_RowFormatting(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.RowFormattingEventArgs) Handles RadGridView1.RowFormatting
If e.RowElement.RowInfo.Cells("Status").Value = "Finalizata" Then
e.RowElement.DrawFill = True
e.RowElement.GradientStyle = Telerik.WinControls.GradientStyles.Solid
e.RowElement.BackColor = Color.DimGray
Else
e.RowElement.ResetValue(LightVisualElement.BackColorProperty, Telerik.WinControls.ValueResetFlags.Local)
e.RowElement.ResetValue(LightVisualElement.GradientStyleProperty, Telerik.WinControls.ValueResetFlags.Local)
e.RowElement.ResetValue(LightVisualElement.DrawFillProperty, Telerik.WinControls.ValueResetFlags.Local)
End If
End Sub
I found multiple requests back in 2009 for this feature and it appears it has been implemented.
According to this page, the DateTimePicker does have the ability to show both dates and times to choose.
https://www.telerik.com/products/winforms/datetimepicker.aspx
The page is marked as UI for Winforms and I have been trying to find out how to make the DateTimePicker to show both dates and times.
There is no code for it and no articles. This is for winforms.
Is this even possible?
Thanks.
Hi,
I am having troubles to Import PDF documents based on an Ownerpassword. Is there a way to open these documents?
The only info I find was based on Java:
https://docs.telerik.com/devtools/aspnet-ajax/api/server/Telerik.Pdf.Security/SecurityManager
Regards,
André
Hello,
I have a Windows Form application with a Telerik splitter. I would like to put a limit on how much the splitter can be dragged up. I've been searching high and low for a solution to this problem and I can't find anything. The closest I've come is this site here: http://www.telerik.com/forums/programmatically-setting-size
It recommends setting the AbsoluteSize of one of the SplitPanels. So I set up a moving event handler and did this:
private void radSplitContainerMain_SplitterMoving(object sender, SplitterCancelEventArgs e)
{
RadSplitContainer splitContainer = (RadSplitContainer)sender;
if (splitter.Location.Y < 420
&& splitter.Location.Y > 0)
{
splitContainer.SplitPanels["splitPanelMainChart"].SizeInfo.AbsoluteSize = new Size(
splitContainer.SplitPanels["splitPanelMainChart"].SizeInfo.AbsoluteSize.Width, 100);
}
}
This doesn't do anything though. I am still able to drag the splitter way below 420 and it doesn't seem to reposition it.
Can anyway help me out?
I downloaded the trial version and the only 3 theme options I get are Reset, ControlDefault and EvalFormTheme
Regardless of which theme I drag onto the form.
Do themes not work in the trial?
Thanks.
Hi,
Within the "Demo Application - Telerik UI for WinForms R1 2020 SP1" there is a PDFViewer Firstlook.
Is there a complete download for these demo's? Now it seems to be based on Qiuckstart libraries and I didnot succeed to make them work (as a starter).
Regards,
André
Hi,
I would to ask which element in RadDropDownList control where if I invoke the MouseEnter event, it able to capture the entire control.
Upon trying, each element only cover parts of the control. So when I have MouseEnter and MouseLeave, after mouse hover on the dropdown border, MouseEnter will be invoke immediately, but then at the same time will invoke MouseLeave immediately even though the mouse pointer still within the RadDropDownList control.
I appreciate your help on this.
Thank you!
Hello,
is there a way to enable autosizing on LayoutControls or LayoutGroupControls?
The designer shows Autosize and even AutosizeMode properties, but they dont seem to be working... I'm trying to add a radgridview to a LayoutGroup. The grid is going to show different amounts of rows ​thus having a variable height. I would like the surroundind LayoutGroupControl to wrap around the grid and match its height accordingly.
Kind regards,
Andreas