Hi
I am new to the telerik world. I am currently working in a code base that uses a mixture of Telerik winforms (15.1.331) and telerik wpf controls (15.1.401). The application has a custom tssp file for winform elements that sets elements in a style. It also uses builtin Expression-DarkTheme for all wpf controls. My goal is to make both winforms buttons and wpf buttons look the same. I would like to know what is the best approach?
Is there a way to create a wpf button theme from the winform radbutton style in the tssp file and apply it across the solution?
Thanks
Venkat
Downloaded the trial version and some documentation earlier today..
Come on guys: Each and every time I run my test app, I am getting a modal dialog. I know, I know that I am running the trial version.
Next it opens a new browser windows on Telerik website.This is crazy...
And this will definitely not do anything to convince me to purchase the product.
I need to evaluate the Chart components in real situations (with plenty of data) and my eval will require some time..
So is there any way to bypass the dialog or at least the opening of the browser window?
Thanks,
L.T
I have an issue with loading layout that causes the floating panes appear in a sequence, not at the same time as i like it to be. Is there any way of achieving this?
This is how i currently do it:
In the ElementLoaded event i set the pane to be IsHidden=true. So far so good. And then in my main application Loaded event i set the IsHidden=false to show the panes. Bot doing this takes exactly the same ammount of time as if i would not set them to be hidden in the ElementLoaded event.
I want all of the panes to become visible with its content all at the same time. Reason for this is we have a startup screen that is visible untill all content is loaded. It works fine with the docked panes, but not the floating ones.
/Niklas
I have 2 RadPane inside a RadPaneGroup which is inside a RadDocking and Split Container.
I have a UserControl with Textbox inside it and Placed the UserControl inside second RadPane as content Template.
Now dragged the Second Rad Pane from the Group and Float it. Then manually set the focus on Textbox inside the second RadPane. When i again drop the Floating window (Dock center) into RadPane Group, it throws exception as below
ArgumentOutOfRangeException: Index out of Range Exception ....
But it is not throwing this error when I am not focus into the Textbox.
Please provide me a solution
Hi,
regarding to the post "http://www.telerik.com/forums/avoid-focus-on-radgridviewcolumn"
is there a possibility to disable the focus on a read only grid column? The property "Focusable" has no effect.
My error prompt works well, when it's outside of the range it prompts the error message. If there a way to have it prompt the message and not stop code from running?
public string Nint
{
get
{
return _nint;
}
set
{
if(double.Parse(value) > (double) Product.MaximumRate || (double.Parse(value) < (double) Product.MinimumRate))
{
NintErrorEnabled = true;
throw new ValidationException();
}
NotifyOfPropertyChange();
}
}
"throw new ValidationException();" stops the code right in it's track. Could I still display the error message without stopping the code?
Hi,
I've encountered an issue where Radgridview crashes upon trying to display too many rows ~1000+. The radgridview is placed under a data template which in turn is part of a hierarchy child template. Upon hitting the expand button to display the grid view, the ui freezes after showing the rows. Upon reducing the number of rows in the data table to 60, all the rows appear without freezing. Any way I could get my 1000+ rows to appear without freezing the ui.
Best Regards,
CH