Hi,
I have upgrade the 2011Q2 to 2011Q3, and I have understood what you had told me several days ago. According to the 2011Q3, the GridBrowserColumn should be made up of a TextBox and a Button, and the Button is included in the TextBox. I want to ask how can I create the same? That is how can I create a Custom column with a TextBox and a Button, the Button is included in the TextBox?
Also, if I want to implement the KeyUp event in my old Custom column that I have asked a few days ago, and the effect should be the same with the RadGridView_KeyUp event, how can I do? (I upload the affix)
Hi, I am a newbie with telerik controls. I added an unbounded control to my grid. Now I implemented the cellclick event of the grid and trying to get whether the user has clicked on the cell of unbounded column or any other column. For the rest of the columns it is working fine, but it doesn't notify when the user click on the cell of unbounded column. Here is the code, I tried
private void MasterTemplate_CellClick(object sender, GridViewCellEventArgs e)
{
if (e.Column.Name == "IS_INCLUDED") // My unbounded column Name is IS_INCLUDED
{
MessageBox.Show(e.Row.Cells["IS_INCLUDED"].Value.ToString());
}
else
MessageBox.Show(e.Column.Name);
}
how can i activate (show) a specific tab in backstage view using code just by code ? (like when u press ctrl+p in microsoft word, it brings up "Print Preview Backstage")
Is it possible to hide the RadMenuItem Shortcut from the user? I have shortcuts on my topmost menu items that I do not want my shortcut displayed. It looks rather ugly on the item.
I've started to use this control and have a quick question, apologies if it's addressed elsewhere on the forum but I've not found anything from reading and searching for this.
We have a requirement (for some date fields) that the user be able to enter the date with continuous entry of numbers. IE to enter a date 01/02/1999 the user should only have to tab to the field then press the keys 0-1-0-2-1-9-9-9 then tab onto the next field.
This datetimepicker, so far seems to have the same issue has the microsoft one in that to type this data in you need to hit the following keys 0-1-RightArrow-0-2-RightArrow-1-9-9-9
We have solved the issue for a particular date entry field by using our own masked text box but it would be nice to get this behaviour AND the datetimepicker in the same control.
I understand that the datetimepicker uses a RadMaskedTextBox for the text entry field, but I can't figure out how to get any control of the text entry itself
I'm rather new to the controls (specifically the ribbon) and I'm trying to achieve the Office 2010 look. I used that theme which turns the main application button into a dark blue folder tab. I would like to print "File" in white on this button.
I have found in the UI Elements for the control that I can set the RadApplicationMenuButtonElement.DisplayStyle to Text, change the Forecolor to white, and change the Text to "File". This appears to work in design, but when I run the application and apply the theme, it goes away.
Furthermore I need to support multiple languages, so I would like to set "File" from a language file.
Does anyone know how to get to the UI elements from source code?
I want to move the controls in the Recurrence Edit Dialog
I want to move the Setting controls in the Recurrence pattern GroupBox Example: Selected Yearly The First Day ofJanuary Move to of January the First Day
The issue is first row is selected as default when the grid is bound, when i click any rows , the first row that is already selected still shows as selected (although multiselect is false for the grid.), how do i not select first row, if any new row is clicked?
2. Also when i select/click on the row, always the first cell is highlighted, how do i disable that?