Telerik Forums
UI for WinForms Forum
3 answers
138 views
I was curious if it was possible to make a Non-Active tab flash?

For instance, something is added to the grid on a non selected tab. I would like the tab to flash blue and white until the user clicked on it. But i don't want the application to automatically swap tabs. 

Thanks!
Nikolay
Telerik team
 answered on 12 Dec 2013
1 answer
92 views
Hi,

We are using schedule view to display list of appointments in the range of 1 year with 1500 schedules.

We need to show some of the text in the subject as bold. For that, we are using Run control inside appointment template.
This implementation makes scroll navigation very slow.
Pls let me know the solution or any alternate way for implementing this.


- Sugumar P
George
Telerik team
 answered on 12 Dec 2013
4 answers
247 views
Apologies if this has been covered, but I have exhausted Google searches on this one.

I have a grid with 5 child grids.  One of the child grids does proper horizontal scrolling so the user can see all columns with their widths set as they were at designtime.  However, the other 4 would try to mash all coluns together to fit, and then upon changing the size of said columns, it would only show what would fit.

Examining all the properties of the 5 templates, I really don't see anything different that would cause this.  I even set HorizontalScrollState to AlwaysShow and still no scrollbar.

Also, I need to know how to change the height of the child grid as well.  This could be the problem, maybe the scroll bar is there just not visible?

Thanks.
George
Telerik team
 answered on 12 Dec 2013
2 answers
110 views
hi ..


Previously I used following code to fill the Data Grid Microsoft's own
But it does not work with the new tool Grid View


myconn = New SqlConnection(constr)
       myconn.Open()
       mycomm = New SqlCommand("Select * from tab1 ", myconn)
       reader = mycomm.ExecuteReader
       reader.Read()
       DataGridView1.Rows(DataGridView1.CurrentRow.Index).Cells(0).Value = reader(0).ToString.ToUpper
       DataGridView1.Rows(DataGridView1.CurrentRow.Index).Cells(1).Value = reader(1).ToString.ToUpper
       DataGridView1.Rows(DataGridView1.CurrentRow.Index).Cells(2).Value = reader(2).ToString.ToUpper
       DataGridView1.Rows(DataGridView1.CurrentRow.Index).Cells(3).Value = reader(3).ToString.ToUpper
       DataGridView1.Rows(DataGridView1.CurrentRow.Index).Cells(4).Value = reader(4).ToString.ToUpper
       reader.Close()
       myconn.Close()


What is the solution؟!
THX




Mr
Top achievements
Rank 1
 answered on 11 Dec 2013
8 answers
530 views
Hello:
When I press double click on a tab of the RadRibbonBar, all tabs are minimized.
How do I to control this state?

I need control it, because the space into my form chage every time it's minimized and the location of all the controls cange too.

thanks
Peter
Telerik team
 answered on 11 Dec 2013
6 answers
332 views
Hello Support Team.
I need to know is it possible to put an image in cells?
For example in item(2)(4) of radListView1
Thanks.
Dimitar
Telerik team
 answered on 11 Dec 2013
9 answers
420 views
Hi I have a RadComboBox wihich is populated by a datatable. This is fine. I map the id to an id in my main table using SelectedValue. I have a check in CurrentRowChanging event to see if there are pending changes and there always are, It's as if the combobox keeps setting the rowstate as modified, even though   the values haven't changed.  Any Ideas?
Ankhaa
Top achievements
Rank 1
 answered on 11 Dec 2013
4 answers
250 views
I was just about to send a support ticket when I found the solution to a request for the GridView layout that I'd like to share:

The requested layout:
- The grid is grouped by one column by default
- The user can change the sort order of all columns
- The user can't change the grouping of the grid

Solution:
- Add the GroupByExpression for the column in code or through the designer
- RadGridView.EnableGrouping == true (if false, the grouping header is not shown)
- RadGridView.MasterGridViewTemplate.AllowDragToGroup == false (no more columns can be added to the grouping header)
- set the "AllowGroup" property of the column in the grouping header to "false" (the user can't remove the grouping column from the header)

Perhaps someone else finds this useful.

EDIT:
I missed, that the "column button" in the grouping header contains a "X" to remove the group. This Close Button is still enabled and the user can remove the group. Any suggestions?
Nadia Sangiovanni
Top achievements
Rank 1
 answered on 10 Dec 2013
1 answer
249 views
I am getting a code analysis warning from the generated GridView code in the Designer.cs file for my user controls.  The error reads as follows:

In method 'MyControl.InitializeComponent()', object 'gridViewTextBoxColumn1' is not disposed along all exception paths. Call System.IDisposable.Dispose on object 'gridViewTextBoxColumn1' before all references to it are out of scope.

I know that I can use a SuppressMessage attribute, but it's appearing anywhere I use a GridView and I'd rather not litter my code with a bunch of suppressions.  Is there another way to fix this?


Visual Studio 2012 Ultimate
C#, .NET 4.0
Telerik for Windows Forms 2013.2 724
George
Telerik team
 answered on 10 Dec 2013
3 answers
168 views
This might be the same question as http://www.telerik.com/community/forums/winforms/editors/radautocompletebox-char-causing-tags-to-be-created.aspx - not sure about that.

I'm evaluating Telerik for use in my To-Do application. I want to use the RadAutoCompleteBox for a textline which doesn't only contains Tokenized parts.

---
This is what I want to achieve: I want to autocomplete some words, but not every word.

E.g. I have a list with "to-do contexts":
@office
@home
@computer
@errands
@furnitureshop

I also have a list with tags:
#garagecleanup
#interior
#projectx

So I have added my autocomplete items:

radAutoCompleteBox1.AutoCompleteItems.Add("@office");
radAutoCompleteBox1.AutoCompleteItems.Add("@errands");
radAutoCompleteBox1.AutoCompleteItems.Add("@home");
radAutoCompleteBox1.AutoCompleteItems.Add("@furnitureshop");
radAutoCompleteBox1.AutoCompleteItems.Add("@computer");
radAutoCompleteBox1.AutoCompleteItems.Add("#garagecleanup");
radAutoCompleteBox1.AutoCompleteItems.Add("#interior");
radAutoCompleteBox1.AutoCompleteItems.Add("#projectx");

Now I want the user to be able to type: 

"Buy a new bank @"

And have the dropdown show the AutoCompleteItems starting with @.
Then the user selects "@furnitureshop", so the textbox will receive the tokenized "@furnitureshop". And the user continues:

"Buy a new bank @furnitureshop for my new #"

And have the dropdown show the AutoCompleteItems starting with #.
Then the user selects "#interior" which also gets tokenized.
---
Is this possible at all with the RadAutoCompleteBox? The RadAutoCompleteBox doesn't show suggestions in the dropdown when it's not directly after an tokenized item. (I set the Delimiter to space).
Dimitar
Telerik team
 answered on 10 Dec 2013
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)
Chart (obsolete as of Q1 2013)
Form
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
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?