
Hi,
Im testing Telerik Winforms UI and i have an issue with forms wich contains RadRibbonBar. In general terms this is the case:
-- Create a MDI Parent form
-- Create MDI Child RadRibbonBar form
-- and when i call Show() evento of the child form this is the result:
[url=https://postimg.org/image/rhjjetn0d/][img]https://s14.postimg.org/rhjjetn0d/Error1.png[/img][/url]
Issues:
- Style broken i used Telerik Metro Blue
- Form Text shows black square
- Double Min, Restore, max buttons (both functional)
and when i use ShowDialog() Event
[url=https://postimg.org/image/xwikbhtq5/][img]https://s14.postimg.org/xwikbhtq5/Right.png[/img][/url]
I tried install previous versions but nothing
Anyone can help me?

Dear Team,
In my first try with Telerik RadGridView Control i succeeded in binding the grid with Dataset [ProcDataSet.xsd]. which list all the rows in my table in RadGridView.
Me.ViewProcurementRate_OceanTableAdapter.Fill(Me.DBOCTOPUSDataSet.viewProcurementRate_Ocean)
now my second issue is to Re-Populate the grid based on user input for instance.
user Input Sea-Port Code and clicks on Search. i want to fill grid with fetching all rows matching user input.
can you please guide me next approach of fetching data from table onto RadGridView.
Thanks

Hi,
is possible to draw open line serie in polar chart as wpf version?
http://www.telerik.com/forums/polarseries-closed-line
Thanks, marc.

Hi, in my radwizard, I have multile steps with different groups. I try to find a way to bypass the validation when I press "previous" button. There is no way I can hit previous without my required field validator interrupting me.
I found a thread where you ask to add the following javascript :
function OnClientButtonClicking(sender, args) {
if (sender.get_activeIndex() > args.get_nextActiveStep().get_index()) {
args.set_cancel(true);
sender.set_activeIndex(args.get_nextActiveStep().get_index());
}
}
When I debug, I can see the script is called but there is something else preventing the page from going to the previous one. Required field validator kicks in as soon as I hit previous.
Thank you for your help

hello
i have a web service that is sending some data to my windows application every 10-15 seconds and i want to use those data as Light Visual Elements and add them to my live tile . also i want to use live tile transition animation .
but the problem is in all the sample i seen, coders always add their light vishal elements manually and when i want to add (and remove) items from my live tile every 10 - 15 second i lost my transition animation
is there a way that i can receive data (text) from a source every x second and add them to livetile and remove old ones and still keep my transition animation like the one in the demo application
and i use the code below
value = random.Next(200);LiveTile.Items.Clear();VisualElement.Text = valueVisualElement.TextAlignment = ContentAlignment.TopCenter;LiveTile.TransitionType = ContentTransitionType.Fade;LiveTile.Items.Add(VisualElement);(assuming i declared my panorama and my tile group )
and this code is inside a timer and its running every x seconds.
Thanks
public class MyComboBoxEditorElement : RadDropDownListEditorElement { protected override void ProcessKeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter || e.KeyCode == Keys.Tab) { List<string> dataSource = (List<string>)this.DataSource; string name = this.Text; if (!NameExists(name)) { AddToDataSource(name); RefreshDataSource(); this.SelectedIndex = this.Items.Count - 1; }else { Update( dataSource[this.SelectedIndex].nameID, caseName); RefreshDataSource(); } } base.ProcessKeyDown(sender, e); }
Hi,
I've found a problem with a MailMerge and a list ExpandoObject as datasource. After switching to Result display mode, it appears to replace the MergefFields with string.empty.
Dynamic object with "static written" property works fine.
Problem seems to be the same as described here: http://www.telerik.com/forums/dynamic-mailmerge
Please apply the same fix in WinForms.
Regards, Tomasz.
