Telerik Forums
UI for WinForms Forum
0 answers
181 views
Hi, Telerik Team

http://www.telerik.com/community/forums/thread/b311D-mdbdh.aspx

As reading above link issue on highlighting row (grid.currentrow)

Is there any other way where the grid can automatically highlight the first row in grid whenever a row is appended to the grid and the grid refresh?
Erik
Top achievements
Rank 1
 asked on 12 Sep 2007
2 answers
94 views
When We try to  change Theme name in Repeat Button  it gives Error message.
Abhisek Shukla
Top achievements
Rank 1
 answered on 12 Sep 2007
1 answer
223 views

Hi,

How can I show the Horizontal Scroll Bar ?
the radGridView.HorizontalScroll property is ReadOnly !

Thanks in advance
Jack
Telerik team
 answered on 12 Sep 2007
3 answers
222 views
I'm developping an mdi application where all forms inherits from ShapedForm and contain a radTitleBar dock on top. The Main form also contains a radMenu and a radToolStrip. to here nothing too complex. The problem i'm getting is when child forms are maximized i do not see the child radTitleBar anymore so impossible to minimize, close. Also when minimizing a childform, i do not see the minimized windows in the bottom parts of the mainForm??

Is there a sample mdi using radtitlebar?
Thanks

Peter
Telerik team
 answered on 11 Sep 2007
1 answer
165 views
I am using the Vista theme at the moment, which nicely shows the selected row. But I'd like to at the same time also show which cell is selected.

I've set 

grid.SelectionMode = GridViewSelectionMode.CellSelect

and I've tried to change the theme under
GridRowElement /root element/ 
    GridCellBoundColumnElement
to have an extra state IsSelected. But that doesn't work.

How can I do this?

Jack
Telerik team
 answered on 11 Sep 2007
6 answers
228 views
Hi,

is thera a way to implement load-on-demeand or should i always load all the nodes ?

I would like to be able to set node's property on -LoadOnDemand and add some event-handlers to my treeview and can load nodes as they are needed by client and not to load them in advance

thanks
almir
Boyko Markov
Telerik team
 answered on 11 Sep 2007
1 answer
126 views
Hi everybody!!!

I have added the Options & exit buttons to the Office Button for Runtime

BUT

How do you make the Options and Exit buttons actually show the Options dialog or exit the application?

Thanks, Matt
Dimitar Kapitanov
Telerik team
 answered on 11 Sep 2007
1 answer
511 views
I have a table bound to a datasource that updates or gets changed frequently.  The actual number of rows does not change that much or very little.  The user will scroll through the table to look at various rows, but when the table refreshes, it always causes the grid to scroll back to the top row.  I would like the visible rows to not scroll out of view.

One thought was to save off the current top visible row index and the then scroll to it after an update, but I can't seem to find out what it is.

If you have another solution as well that would be great.

Jack
Telerik team
 answered on 10 Sep 2007
0 answers
1.2K+ views
The goal of the Telerik Forum is to provide all registered users with a way to find answers to their questions before officially contacting Telerik. In case you need a faster and precise response, please start a new support ticket as it gets higher priority than Forum posts.

A post in the Forums doesn't guarantee you a response from the Telerik support team although 95% of all posts are eventually addressed. Additionally, a post is not assigned a response time as with the support ticketing system.

The Forums can be used to:
  • Discuss coding techniques with fellow Telerik users
  • Share your experience on the Telerik suite of controls
  • Ask general questions, not related to Telerik controls
  • Contact Telerik with a question
  • Contact Telerik MVPs
  • Help other users

Telerik strives to constantly improve its support services but it is essential to have full information to supply precise replies. If we do not have enough details we will not be able to properly address your inquiry and we will ask for further info. The extra loop is sure to slow down the time it takes to resolve your problem, and subsequently the further development of your project.

It is vital that you follow these guidelines in order to receive an accurate response:

GUIDELINES TO USING THE SUPPORT FORUM
  1. You should have a valid Telerik account to post in the Forum. Anonymous names will not be allowed and such posts will not be answered or will be deleted. 
  2. Use the relevant product forum to post your questions and comments. If your question relates to two or more Telerik products, you can post it in the General Discussions section. 
  3. Choose a descriptive name for your thread in order to allow the other users looking for similar information to find it more easy. 
  4. Try to keep discussing only one subject per thread. If you have information/inquery unrelated to the initial topic of a thread, please open a new thread.
  5. Describe your question in detail. Make sure to include the following information: 
    • Step by step instructions on how to reproduce the problem 
    • Code snippets (file attachments other than .gif, .jpg, .jpeg, and .png are not supported). If you think that Telerik needs to review your project and/or files, start a new support ticket.
    • Stack trace, if applicable
    • Used programming language (VB.NET or C#)
    • Your experience with .Net and RadControls
       
  6. State the software you are using, including: 
    • OS version and applied service packs
    • Regional and language settings, if different from En-US
    • .NET version (.NET2, .NET4, etc)
    • Exact version of the Telerik product 
       
  7. Telerik reserves the right to use, reproduce and share the material you post within the forums. 
  8. Telerik reserves the right to not participate in all posts. 
  9. Telerik reserves the right to remove any messages that do not comply with these terms.

ENJOY!!!

Best Wishes,
The Telerik team

Telerik Admin
Top achievements
Rank 1
Iron
 asked on 07 Sep 2007
4 answers
421 views
I need to format a row depending on a state of the DataBoundItem and i'm trying to use the RowFormatting event.

In some cases i need to set the font of the row to italic and in some other cases i need to hide it from the user.

here is my code

void radGridViewSearchResults_RowFormatting(object sender, RowFormattingEventArgs e)

{

GridViewRowInfo gvri = e.RowElement.RowInfo;

myobject obj = gvri.DataBoundItem as myobject;

if (obj.IsDeleted)

{

gvri.IsVisible = false;

return;

}

if (obj.IsModified || obj.IsNew)

gvri.VisualElement.Font = new Font(gvri.VisualElement.Font.FontFamily, gvri.VisualElement.Font.SizeInPoints, FontStyle.Italic);

if (obj.IsOnError)

gvri.VisualElement.BackColor = Color.Red;

}

The problem is that the rows that should be hidden are still showing up and the ones that should be in red are not?
I've check the state of my objects and they are correct.

I've also remarked that the RowFormatting event is called tice for each item?

What is the correct way of hidding a row from the grid and customize its style?

thanks

Jack
Telerik team
 answered on 07 Sep 2007
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
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?