Telerik Forums
UI for WinForms Forum
1 answer
247 views
Hi,

Is it possible to add a tab character (\t) to a grouping text?
If I'm adding a tab character to the cells in the column on which I'm grouping, the tab isn't visible.

Kind regards.
Alexander
Telerik team
 answered on 10 May 2010
1 answer
188 views
I'm using Telerik Windows Forms 2010 Q1.
I have a desktop application that have some functions, one of them is freezing rows and columns for user to check and compare data.
I used pin feature in gridview. But got some unconvenience as followed:
When I pinned some rows (or just one row) then refreshed the grid (reload data from database and rebind to grid), this encountered an error.
I put a try ... catch and found out the error: Column 'COLUMN_NAME' does not belong to table, with table here is datasource.

To fix this, I put an iteration that unpin all currently pinned rows right before the datasource assignment. But it's my solution for the ease of my work.

Would you tell me if there is any other solutions for that matter or Telerik Windows Forms GridView has supported this (pin rows) internally?

Jack
Telerik team
 answered on 10 May 2010
3 answers
251 views
Hi,
how do i style the radMessageBox? it seems it doesn't appear in q1 2010 VisualStyleBuilder

Thanks a lot,
Anca
Alexander
Telerik team
 answered on 10 May 2010
1 answer
104 views
Hi all,

I have upgraded my application from Q1 2010 SP1 to Q1 2010 SP2 to fix a memory leak. However, in this new Service Pack I encounter another problem:

I have a couple of listboxes with multiselect, in which the user can select multiple items. I use the theme Office 2007 Silver in my application, and in Q1 2010 SP1 (and older versions) it was clear: selected items had a grey background and the 'current' item had a grey border around the item. So when a user deselects an item it changes from a grey background (selected) to a grey border (current). See also the first attached screenshot.

In SP2 however, the styles\themes seem to have changed. Both the selected items and the current item are now orange. The exact same color of orange... So the difference between the selected items and the 'current' (possibly not-selected) item is not visible. Also  when a user deselects an item, it is not visible that the item is deselected until the users selectes another item. See the second attached screenshot.

This is not only with the Office 2007 theme but also with other themes. The only theme so far where this still works correct is 'Breeze', which I am not going to use in my application. Is this a mistake with the themes/styles or is this intentional? Can I adjust this by making my own theme (copied from Office 2007)? I have no experience with the Visual Style Builder and cannot find the 'selected item' style and the 'current item' style for ListBoxes in the Style Builder... Any help is appreciated. Thanks!

Regards,
A. Bennen.
Victor
Telerik team
 answered on 10 May 2010
1 answer
152 views
Hi all,

I have upgraded my application from Q1 2010 SP1 to Q1 2010 SP2 to fix a memory leak. However, in this new Service Pack I encounter another problem:

I have a couple of listboxes with multiselect, in which the user can select multiple items. I use the theme Office 2007 Silver in my application, and in Q1 2010 SP1 (and older versions) it was clear: selected items had a grey background and the 'current' item had a grey border around the item. So when a user deselects an item it changes from a grey background (selected) to a grey border (current). See also the first attached screenshot.

In SP2 however, the styles\themes seem to have changed. Both the selected items and the current item are now orange. The exact same color of orange... So the difference between the selected items and the 'current' (possibly not-selected) item is not visible. Also  when a user deselects an item, it is not visible that the item is deselected until the users selectes another item. See the second attached screenshot.

This is not only with the Office 2007 theme but also with other themes. The only theme so far where this still works correct is 'Breeze', which I am not going to use in my application. Is this a mistake with the themes/styles or is this intentional? Can I adjust this by making my own theme (copied from Office 2007)? I have no experience with the Visual Style Builder and cannot find the 'selected item' style and the 'current item' style for ListBoxes in the Style Builder... Any help is appreciated. Thanks!

Regards,
A. Bennen.
Victor
Telerik team
 answered on 10 May 2010
1 answer
174 views
In my application, i created a button called "First Available"
When the button is pressed, I determine what is the first available time slot (based on data stored in a DB) and then create a temporary entry (green in color) into the calender that says "THIS IS THE FIRST AVAILABLE."

I would like for the calender to automatically scroll to that time slow. I know how to change the date, but I am not sure how to make the calender scroll down to view the appropriate slow. 


If there would be a better method to do this, please feel free to speak up.

Thanks!
Dobry Zranchev
Telerik team
 answered on 10 May 2010
1 answer
109 views
We have a RadTabStrip control that has listboxes and combo boxes located on each TabItem.

The issue we are running in to is populating the BindingSources for each combo box on the RadTabStrip.TabSelected event.

On form load, we have the following code:
        void Form1_Load(object sender, EventArgs e) 
        { 
            PopulateOutTabCombo(); 
            PopulateOutTabList(); 
            this.radTabStrip1.SelectedTab = tabItem2; 
        } 
 
        void PopulateOutTabCombo() 
        { 
            DataItem2Manager dm2 = new DataItem2Manager(); 
            this.outTabComboSource.DataSource = dm2; 
        } 
        void PopulateOutTabList() 
        { 
            DataItem1Manager dm1 = new DataItem1Manager(); 
            this.outTabListSource.DataSource = dm1; 
        } 


The routine that handles the radTabStrip1.SelectedTab event has the following code:
        void radTabStrip1_TabSelected(object sender, Telerik.WinControls.UI.TabEventArgs args) 
        { 
            PopulateInTabCombo(); 
            PopulateInTabList(); 
        } 
 
        void PopulateInTabCombo() 
        { 
            DataItem2Manager dm2 = new DataItem2Manager(); 
            this.inTabComboSource.DataSource = dm2; 
        } 
        void PopulateInTabList() 
        { 
            DataItem1Manager dm1 = new DataItem1Manager(); 
            this.inTabListSource.DataSource = dm1; 
        } 

When the SelectedTab changes to tabItem2 on the form load event, the BindingSource does not get populated with any data, even though the code is being run.

Even more interesting, if you breakpoint the code 'this.inTabComboSource.DataSource = dm2;', you can see that the BindingSource.Count = 0, BUT.... the BindingSource.DataSource property has 10 items in it!

This ONLY happens when you programmatically switch the SelectedTab. If the user clicks on the tab to switch it, it works perfect! Is there some cross thread issues going on that I am not seeing?

After the form loads, if you manually switch the tabs, the BindingSource will be populated, and you will get the items in the combo box and list box.

You can download a copy of my sample solution if you need to reproduce the issue.

Has anyone else run into this problem? If so, have you been able to solve it?
Victor
Telerik team
 answered on 10 May 2010
8 answers
191 views
Hi,

I have a question about the  Week view layout in radScheduler.
I want a day ruler in place of the time ruler. How can I do it?
If such functionality doesn't exist,is there a way to implement it? ( which part to alter etc)

Thank you

Anastasios
Top achievements
Rank 1
 answered on 10 May 2010
4 answers
290 views
Currently my scheduler shows 1 day, broken up by hour. Is it possible to change the displayed interval to 15 minutes?

so it would show 

12:00
12:15
12:30
12:45
01:00
etc


Also, is it possible to have more than 1 appointment at a time per interval?

thanks!
Dobry Zranchev
Telerik team
 answered on 10 May 2010
1 answer
141 views
Hi, I have a GridView bound to a DataTable, and I want to bind a CheckBoxColumn of my GridView to an Integer DataColumn of my DataTable. So the checked CheckBox corresponds with '2' in the Integer DataColumn, and the unchecked CheckBox corresponds with '1' in the Integer DataColumn. Is there something like parse and format events for this binding? Thanks.
Svett
Telerik team
 answered on 10 May 2010
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Form
Chart (obsolete as of Q1 2013)
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?