Just reporting what I think might be a bug.
This happens in a scheduler in weekview mode with the RightToLeft property set to True (2011 Q3):
When for example the last time slot of the Wednesday is selected, if DOWN arrow is pressed, the first time slot of Tuesday will be selected. It goes back instead of going forward to the next day.
The same problem exists with the UP arrow. It goes to next day instead of previous day.
In my app, i have an radpanelbar that is populated at runtime with multiple radpanelbargroupelements (variable number, depending on the user's role), where in each of those elements, there is a radgridview.
I want to give the user the possibility to choose his layout: outlook, explorer, list,toolbox.
I works fine in outlook and list style.
When choosing explorer style, i want each radpanelbargroupelement to expand and evenly fill the available space in the radpanelbar.
The expanding works, but i cannot set the height of the contentpanel to take up as much space to evenly fill the radpanelbar.
I can this be done?
I can bring my toolwindow outside the my main program it is working great. Floating function works fine. But Sometime our customer want to some new features. They bring toolwindow outside program and minimize main program they only want to see toolwindow. but they dont see. cause when they minimize main program (main program owner the dock (toowindow)) toolwindow minimize together main form. how can I block this. Forexample if your toolwindow is floating after you want to minimize your main program. I dont want to minimize the toolwindow in this time. How can I do this.
I'm trying to insert a single item in a DataList, but i only get a null point exception (Object reference not set to an instance of an object..) If i "add" the same item first and then "insert" it's working, but not with insert alone...
This is not working:
lvServiceResult.Items.Insert(0, new ListViewDataItem(text + @"..."));
This is working:
lvServiceResult.Items.Add(new ListViewDataItem(text + @"..."));
lvServiceResult.Items.Insert(0, new ListViewDataItem(text + @"..."));
I am working my way through evaluating Telerik as a replacement for Syncfusion.
One of the requirements for the application is to show nine columns for example but fill the window with just the first four leaving the rest scrollable. This needs to happen when the screen is initially displayed and anytime it is resized. The four columns should shrink and expand as required to fill the space in the grid and should adapt to whether the grid is grouped or not.
Granted this was done with some hard won knowledge of how Syncfusion's GroupingGrid works but I need to be able to accomplish the same thing with GridView to make it a viable replacement.