I need to export data from 3 different grids into one excel file.How can i do that?
Hi,
I'm using a DropDown button, and edit its items dynamically in the DropDownOpening event.
I've tried to limit the size of the list popup using the MaxSize and MaximumSize properties of the list element, but it cuts the popup to only present the fitting items, without any scrolling bar.
I have tried several workarounds but I'm not getting the desired result.
Do you have any suggestions?
Thanks!
I have two groups in my radPanorama which both of them have about ten radTileElement.
When I drag one radTileElement in another position inside it's group then no event is fired, even if I drop it into another group no event is fired.
How to know if radTileElement is in drag state and how to know where and when it's dropped ?
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();
}
}