I implemented a WinForm holding a RadDock and in it several Containers, DocumentWindows, ...
Now that there are more and more specialized DocumentWindows I think about defining this windows in separate files and loading this DocumentWindows dynamically when need to be shown.
Could you guid me how to do this easy and elegant?
How can I move the definition of the DocumentWindows into another file?
Generating a new nearly empty WinForm with a RadDoc and copyPaste the Window into that?
How can I load the DocumentWindow dynamically into the main WinForm?
Not all documentWindows are shown after program start, but when the user is selecting it in main menu "View" - just like it is in MS VS.
Thanx
Peter


Hi Telerik team.
I have a question about the RadGridView. I use in my application multiple gridview which have in common a lot. I have made some class which inherit from GridViewTemplate to represent my buisness object. This let me use the same grid in multiple Template.
But I have tried to go to the next step in using these Template on a hierarchical Grid (by extending them to add one column for the relation with the parent grid). And then I came in trouble because the template on the main level should be a MasterGridViewTemplate (or inherit from it) and the secondary template should be a GridViewTemplate (or inherit from it BUT not from MasterGridViewTemplate).
Let see an example:
I have two business object with one hierarchical: Customer and order.
I create two class CustomerGridViewTemplate and OrderGridViewTemplate which inherits from MasterGridViewTemplate. I can use theses template to build grid which show a list of customer or a list of order.
Now, I want to build a hierarchical Grid which show customer and their relative order so I create a new class CustomerOrderGridViewTemplate which inherits from OrderGridViewTemplate (it just add a new column with client ID). I use the CustomerGridViewTemplate as MasterTemplate and I add the CustomerOrderGridViewTemplate in the template collection and create a relation. This doesn't work (only the master template display). If OrderGridViewTemplate inherits from GridViewTemplate instead of MasterGridViewTemplate the two grid display correctly but I can't use anymore OrderGridViewTemplate in other Grid as MasterTemplate.
I don't understand why a custom template inheriting from MasterGridViewTemplate couldn't be used as secondary template. Any help or explanation will be welcome.

Hi,
The RadMarkupEditor has some issues with the usage of custom tags. I will provide you 2 cases which will describe the problems.
Case 1:
Case 2:
For me this is not normal behavior, especially not the second case. Can you have a look at this?
Thanks,
Tom



I'm on the newest version of the telerik winforms. (2015_2_623)
After updating, the first occurrence of recurring appointments no longer show up.
This appears to occur when using any time zone that comes before UTC time.(Any "-" time)
Is there a fix for this issue?


protected override void CreateChildElements(){ // ... init elements this.Children.Add(radLabel); // ok this.Children.Add(radbtnColor); // ok this.Children.Add(radbtnFont); // ok this.Children.Add(new RadCheckBoxElement()); // GridDataCellElement will shown empty if this line not removed}
Hi,
I used this solution to increase my DropDownList popup when item text is longer than ​DropDownList size. But when I open the DropDownList for the first time, it goes off the screen (my DropDownList is at the right edge of the form and popup isn't positioned correctly and goes right off the screen).
​Then when I ​close and ​open DropDownList, the popup position will be correct and after that everything is OK.
Should I add something at the end of "PopupOpened" event after resizing items?
