Telerik Forums
UI for WinForms Forum
4 answers
189 views

I have some questions für the localisation of the radcontorls ( grid, scheduler, ... ).

I haven't found a place where delevopers can share localisations for their languages ( for example german, french, spain, ... ) 

1. Exist a place where developpers can share their localisations ?

2. If not, would it be possible to create such a place ( for example an additonal subforum ) ?

Regards,

Ramius 

Vassil Petev
Telerik team
 answered on 21 Jul 2009
5 answers
322 views
Hi,

here is my problem :
I have a radtabstrip with several tab items : the first item is a panel with a list of records, when you double click on a record, all the infos about the record are displayed in a new tab so a very easy application ...
Some informations about records are displayed in combobox plugged on binding source (a new binding source is created for each new tab so that the combobox are not linked).

The problem is when I open a second tab about a record, when I click on the tab of the first record, combo are initialized to the first value of the list and don't remember the initial value of the record :( The last tab item always have the right info in the combobox but all others tab items are reinitialized and I don't understand why :(

Thank you for your help, if you have any question I'm here to explain better my problem ...

Regards
Nick
Telerik team
 answered on 21 Jul 2009
3 answers
106 views
In a cell formatting event, I need to hide a row based on a cell value.  Here's my code:

cellElem.RowElement.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;

However, the row is not collapsed.  It's hidden, but still takes up real estate on the grid.  I also tried setting Visibility and IsVisible on the RowInfo object and it did not product the correct behavior either.


Victor
Telerik team
 answered on 21 Jul 2009
1 answer
131 views
I'll describe what I'm doing before asking my question.  I have a form that is using the grid control and would like to open a new form window with the data from the row that was selected. What's the best way to pass the currently selected row to a new form? 

Thanks.
Victor
Telerik team
 answered on 21 Jul 2009
3 answers
517 views
Hi,
is it possible to use GridView as a kind of "treegrid"? I don't mean hierarchical grid with new separate grid for each level or gridview with automatically added group rows. I think something like editable multicolumn treeview. I'm deciding between componenone and telerik and in componentone gridview is this possible. But I can't find how to solve it in the telerik gridview.

Thanx
Nick
Telerik team
 answered on 21 Jul 2009
1 answer
189 views

How can a user reactivate a hidden window?

Is it possible to extend the quick navigator so that it also shows hidden windows?

Regards,

Ramius

Georgi
Telerik team
 answered on 20 Jul 2009
7 answers
167 views
Hello,
I encounter with a new problem with the version of  "Telerik 2009 Q1 SP1 for WinForms",
when I set a normal form in the MDI form(ex:this.MdiParent = frmMdiParent;) and the normal form include the RadGridView control,
I  try to write the code "radgridview.ShowColumnChooser();" in the button_click event
in order to show the  ColumnChooser form,
but the RadGridView of the normal form can't run Column Chooser,
it'll show the exception error message "control have resulted in a  cycle reference ..."
if the normal form not set the MDI Parent,the ColumnChooser form will work OK.
I also try it with the version of  "Telerik 2008 Q2 SP1 for WinForms",
when the normal form set the MDI Parent,the ColumnChooser 'll run good.

Pls help me to solve this problem.
best regards.
Krzysztof
Top achievements
Rank 1
 answered on 20 Jul 2009
3 answers
249 views
When I set up the following, it works once and then all subsequent runs result in the TimePicker popup being devoid of times.  If I do not set the SelectedDate, the error never occurs, but once it does the error persists even after I remove the SelectedDate setting.  I am using military time.  I have reverted to non-military time and everything works now, but my customer wants military time.  Please fix this bug!

                            RadDateTimePicker1.SelectedDate =

DateTime.Now;

 



                            <telerik:RadDateTimePicker ID="RadDateTimePicker1" Runat="server"
                                    Calendar-Orientation="RenderInColumns" Culture="English (United States)"
                                        DateInput-DateFormat="M/d/yyyy HH:mm:ss" DateInput-MaxLength="0"
                                        DateInput-SelectionOnFocus="None" Skin="Forest" TimeView-Columns="5"
                                        TimeView-Interval="00:10:00" TimeView-TimeFormat="HH:mm"
                                        onselecteddatechanged="RadDateTimePicker2_SelectedDateChanged">
                                        <TimePopupButton HoverImageUrl="" ImageUrl="" />
                                        <TimeView runat="server" CellSpacing="-1">
                                            <HeaderTemplate>
                                                Time Picker
                                            </HeaderTemplate>
                                            <TimeTemplate>
                                                <a id="A1" runat="server" href="#"></a>
                                            </TimeTemplate>
                                        </TimeView>
                                        <DateInput runat="server">
                                        </DateInput>
                                        <Calendar runat="server" Orientation="RenderInRows" Skin="Forest"
                                            UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False"
                                            ViewSelectorText="x">
                                        </Calendar>
                                        <DatePopupButton HoverImageUrl="" ImageUrl="" />
                                    </telerik:RadDateTimePicker>

Thanks,

Nate
Daniel
Telerik team
 answered on 20 Jul 2009
1 answer
215 views

I use the following code to populate a GriveView control.  As you can see oBundleEntriesDAL.GetByBundleID returns an IQueryable object which is used to set GridView.DataSource. 

 

 

 

 

Private Sub PopulateBundleEntries()

 

   Dim oBundleEntriesDAL As New BundleEntriesDAL(_ContextConnection)

 

 

     gvBundleEntries.MasterGridViewTemplate.AutoGenerateColumns =

False

 

 

 

 

    gvBundleEntries.DataSource = oBundleEntriesDAL.GetByBundleID(_BundleID)

 

 

End Sub

 

 

 

 

 

 

Public Function GetByBundleID(ByVal bundleID As Integer) As IQueryable(Of BundleEntry)

 

    Dim query = From bundleEntries In _Context.BundleEntries.Include("Bundle") _

 

 

 

                        Where bundleEntries.Bundle.BUNDLE_ID = bundleID _

 

 

 

                        Select bundleEntries

 

 

 

   Return query

 

 

 

End Function

 

 

 

 

 

 

I have a form that calls PopulateBundleEntries() when the form is loaded.   Later, if I add a row to the underlying database and call PopulateBundleEntries() again the row appears in the GridView control as it should.  However, if I change some column values for an existing row in the database and call PopulateBundleEntries() again the changes in the database are not reflected in the GridView.   I have tried clearing the rows before DataSource is set but that doesn't resolve the problem.   I tried using Rows.Clear and Rows.RemoveAt but neither of those options worked.

 

 

 

What am I doing wrong?  How do I get the GridView to display column values that have CHANGED in the underlying database?

Steps to Reproduce Problem

1) Populate GridView in Forms Load Event  (call PopulateBundleEntries())
2) Add a row to database and refresh the grid to reflect the change  (call PopulateBundleEntries())
3) Change column values for existing row in the database and refesh the grid to reflect the change   (call PopulateBundleEntries())

Victor
Telerik team
 answered on 20 Jul 2009
1 answer
119 views

I use the following code to populate a GriveView control.  As you can see oBundleEntriesDAL.GetByBundleID returns an IQueryable object which is used to set GridView.DataSource.

 

 


 

Private Sub PopulateBundleEntries()

 

 

    Dim oBundleEntriesDAL As New BundleEntriesDAL(_ContextConnection)

 

    gvBundleEntries.MasterGridViewTemplate.AutoGenerateColumns =

False

 

 

 

 

    gvBundleEntries.DataSource = oBundleEntriesDAL.GetByBundleID(_BundleID)

 

End Sub

 

 

 

 

 

Public Function GetByBundleID(ByVal bundleID As Integer) As IQueryable(Of BundleEntry)

 

 

     Dim query = From bundleEntries In _Context.BundleEntries.Include("Bundle") _

 

 

                         Where bundleEntries.Bundle.BUNDLE_ID = bundleID _

 

 

                         Select bundleEntries

 

 

    Return query

 

 

End Function

 

 

I have a form that calls PopulateBundleEntries() when the form is loaded.   Later, if I add a row to the underlying database and call PopulateBundleEntries() again the row appears in the GridView control as it should.  However, if I change some column values for an existing row in the database and call PopulateBundleEntries() again the changes in the database are not reflected in the GridView.   I have tried clearing the rows before DataSource is set but that doesn't resolve the problem.   I tried using Rows.Clear and Rows.RemoveAt but neither of those options worked.

 

 

What am I doing wrong?  How do I get the GridView to display column values that have CHANGED in the underlying database?

Steps to Reproduce Problem

1) Populate GridView in Forms Load Event  (call PopulateBundleEntries())
2) Add a row to database and refresh the grid to reflect the change  (call PopulateBundleEntries())
3) Change column values for existing row in the database and refesh the grid to reflect the change   (call PopulateBundleEntries())

Victor
Telerik team
 answered on 20 Jul 2009
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?