or
Hi there,
is it possible to disable the Key Tips for some specified controls in the RadRibbonBar?
I have placed a RadImageButtonElement and a RadDropDownListElement in the same RadRibbonBarGroup.
I would like to disable the Key Tip feature only for this both controls. All the other controls should be accessible by the Key Tip.
I have set the Property -> radRibbonBar1.EnableKeyMap = true; and for the other controls in the RibbionBar I assigned the KeyTip too.
At the moment the RadImageButtonElement and RadDropDownListElement get a numeric automatic key tip.
I use RadControls for WinForms Q3 2011 SP1.
If anyone has any ideas I would appreciate
Thanks in advance
Sascha
if (radGridView1.Rows[e.RowIndex].Cells["usu_clave"].Value == null) { radGridView1..Rows[e.RowIndex].Cells["usu_clave"].ErrorText ="some error"; e.Cancel = true; //prevent the user to save changes return; }
<code style="color: #000;">if (radGridView1.Rows[e.RowIndex].Cells["usu_clave"].Value == null)</code><code style="color: #069;font-weight: bold;"></code><code style="color: #000;"> {</code><code style="color: #000;"> radGridView1..Rows[e.RowIndex].Cells["usu_clave"].ErrorText ="some error";</code><code style="color: #069;font-weight: bold;"></code><code style="color: #000;"> e.Cancel = true; //prevent the user to save changes </code><code style="color: #069;font-weight: bold;"></code><code style="color: #000;"> return;</code><code style="color: #069;font-weight: bold;"></code> }<br><div style=" background-color: #fff;"><span style=" "><span style=" margin-left: 0px !important;"><code style="color: #000;"></code></span></span></div>pGrid.BeginUpdate();// QueryDB below returns a Datatable with the resultset or the SELECTDataTable rs = clsDBConn.QueryDB("SELECT a,b,c FROM T1 UNION SELECT a,b,c FROM T2"); pGrid.DataSource = null; pGrid.DataSource = rs;pGrid.MasterTemplate.AutoGenerateColumns = true;pGrid.MasterTemplate.AllowAutoSizeColumns = true;pGrid.MasterTemplate.AllowAddNewRow = false;pGrid.MasterTemplate.AllowDeleteRow = false;pGrid.MasterTemplate.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.None;pGrid.MasterTemplate.SelectionMode = GridViewSelectionMode.FullRowSelect;pGrid.TableElement.ShowTranslucentSelectionRectangle = true;pGrid.ShowRowHeaderColumn = false;pGrid.EndUpdate();foreach (GridViewDataColumn column in pGrid.Columns){ column.ReadOnly = false;}