Hi,
I have a function to search a grid programatically which works fine. This uses the MasterView.TableSearchRowSearch(searchvalue);
grd.MasterView.TableSearchRow.AutomaticallySelectFirstResult = true;
grd.MasterView.TableSearchRow.HighlightResults = true;
grd.MasterView.TableSearchRow.InitialSearchResultsTreshold = 1;
grd.MasterView.TableSearchRow.Search(searchvalue);
I would like to make it slicker by showing a messagebox if no matches are found once the search is completed and also to return the index of the 1st found match. Is here a way to get search result back or determine if the search is completed?
Thanks.
Here is a
Hi, I am new to Telerik and am currently developing a program for my company. I click on the "Click here to add a new row" button on the top and input the values for each column. Then I want to have the user press a "save" button and save these values to the Oracle database. I am unable to get the values for each column. I've came across many versions of this problem throughout my search, but I want the most up to date one that would allow me to get the new row values that I entered from "Click here to add a new row". Thanks! Both dr and currentRow.value return null.
private void btSave_Click(object sender, EventArgs e)
{
GridViewRowInfo dr = this.gvUser.GridViewElement.CurrentRow as GridViewRowInfo;
GridViewNewRowInfo currentRow = dr as GridViewNewRowInfo;
if (currentRow != null)
{
string test = dr.Cells[1].Value.ToString();
test = currentRow.Cells[1].Valiue.Tostring();
test = dr.Cells[2].Value.ToString();
test = dr.Cells[3].Value.ToString();
test = dr.Cells[4].Value.ToString();
test = dr.Cells[5].Value.ToString();
}
}



Hey,
I want to change the selected item selected by the user by an another item.
I put the following code, but the selected item is not changed :/
Private Sub myCombo_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles myCombo.SelectedIndexChanged
myCombo.EditorControl.CurrentRow = myCombo.EditorControl.Rows(myNumRow)
myCombo.EditorControl.CurrentRow.IsSelected = True
myCombo.EditorControl.CurrentRow.IsCurrent = True
End sub
Do you have an idea pls ?
NB : I'm on Q1 2015


Hello,
I wonder if there is a way to make a group summary row visible at all times?
Even when the rows in the group is hidden (collapsed).
Best regards
Jan Persson
Hello Telerik,
I find in most cases the background of the RadTrackBar when themed just does not fit the style of the page it is being located in.
eg. I am using Office2010black theme and when placed on a RadPageView tab the background just doesn't go.
Is there anyway to make this transparent and take on the colour of the panel in some way?
I've attached an image to make it clearer.
Thanks
Terry

I add a new RadButtonElement in RadRibbonBarGroup and Set the image of RadButtonElement . When the cursor over the button, the button's color(?) changes.
Like the attach images.
But I wrote following code, it do not have the same change when the cursor over the button.
So I want ask which property can achieve that。
.
