hi.
i want to have a fullscreen form with auto hide title bar like "Microsoft Remote Desktop" or so on.
is there a way to implement it with telerik winform components ?
Hello, I need to have a column that in the first row will allow input of numerical value between 0 and 100 an in all other rows beneath to have a cells with two predefined string values. How to do this? Before condition to have first row with a string value, I was using GridViewComboBoxColumns but now I can't because of the first row.
I'm using Telerik Q2 2016 SP1

Although I want to have tool tips available when the text of the buttons (RadItems) on my ribbon bar (RadRibbonBarGroup) are not visible because the ribbon bar has been resized down to a point where the text is hidden, I do not want these tool tips to be available when the text is visible as they are then redundant and somewhat annoying to the users.
Is there an event triggered when the button determines to hide/show the text while resizing?
Is there a property I can use to determine whether the button text is visible?
Is there already logic built into the button to tie this text-visible to the availability of the tool tip>?
Would it be possible for me to inherit from the RadItem control and override the tooltip property or would that be pointless because the code to display the tooltip uses the internal variable and not the property getter to retrieve the tooltip text to display.
Thank you in advance for any help you can offer.

I have a gridview that I have bound to a DataSet that displays a customer's address information. (Select FNAME, LNAME, STREET, CITY, STATE, ZIP FROM CUSTOMERS)
I have a textbox that a user will type a search criteria into and click a button. What I am trying to do is run the sql again with that criteria applied and return the results to the user by updating this GridView.
This should be simple and I have done it before in Access. But, I am stumped right now and could use some help.
Table adapter is named CUSTOMERSTableAdapter
Binding source is named CUSTOMERSBindingSource
Data set is named ECOMLIVEDataSet
If my button was named btnCustomerSearch, what code should execute on the _click event to revise the SQL?
Thanks in advance. Maybe somebody can point to a tutorial online somewhere or help explain this.

Hi,
i have got System.OutOfMemoryException while assigning dataset with 3+ milllion records to PivotGrid. I understand that this is sql driver memory limitation, but how do you suggest to solve it besides using analysis services?
Thanks
Alex

Hi,
looks like a bug:
if i set
this.radPivotGrid1.AutoExpandColumnHeaders = false;
this.radPivotGrid1.AutoExpandRowHeaders = false;
then add 3rd field to Sum values and change it to Average - PivotGrid still show "Sum of ...", plus you can't change column width, etc
I tried on this sample project:
http://feedback.telerik.com/Project/154/Feedback/Details/196043-improve-radpivotgrid-extend-the-save-load-api-to-always-serialize-the-filterde
Alex

Need a way of disabling a checkbox cell in a unbound grid based data obtained elsewhere.
Basically, I have a Combobox Column displaying Employee Name. When I select a Employee, I have a 'Bonus' checkbox column that I "may" need to disable based on the Employee selected.
Something like, I select Employee A from the 'Employee Name' column and determine if this employee is eligible to receive a bonus. If Employee is NOT eligible, I want to disable the 'Bonus' checkbox column for this row, unselect the checkbox if it is selected, and visually show that it is disabled. If Employee is eligible the 'Bonus' column for the row should be enabled and visually show that it is enabled.
Not exactly sure how to accomplish this and would appreciate any help anyone can provide.
Thank you.

James
Posted 3 hours ago
I am attempting to add validation to my grid which has 3 columns: ID, NAME, STATUS
My data is not bounded to an adaptor (requirement).
I am trying to validate for the existence of name in my database on the RowsChanging event.
On NotifyCollectionChangedAction.Add , I pass the value of NAME to my stored procedure and determine if the NAME value exists; no problems.
On NotifyCollectionChangedAction.ItemChanging, I pass the values of ID and NAME to my stored procedure and determine if the NAME value exists.
Problem is, the NAME value passed on ItemChanging is what is currently in the cell, not what is in the editor. How can I get the editor value at this time?
