in my radgrid i have three template columns, first column textbox, second dropdown list, third datecontrol
when i click on export to excel, i need to export the data in Template columns to excel
data
in bound columns are getting exported to excel, problem is only with template columns
can
any one help me how to achieve this
Thank you in advance
Hi Team,
We are using Telerik 2016 Q1 SP1 Radgrid in our application. And after this latest upgrade, we have noticed this weird behavior of the Client-side data bound Radgrid in our page. When we try to reorder a GridButtonColumn and increase the page size of the grid, the data does not refresh as expected with the correct page size, but remains the same, for instance if the page size was 10 and after reordering, if we set page size to 20, still we see only 10 records, however page size and the records returned from the database are 20. Additionally, this does not happen if we reorder any other column other than GridButtonColumn.
And we already have set the property, even then it does not work.
ClientSettings.ReorderColumnsOnClient = true;
ClientSettings.ColumnsReorderMethod = Reorder
Can someone please let us know fix for this?
Any help is greatly appreciated!
Thanks in advance,
Lax
Hello, I have a RadListview where all the items are always in edit mode and I have a button outside the list that should save all the changes made on each of the items, the problem is that when I click on the button all the ddata typed on the controls in the lis view is lost so I always get empty values.
protected void Button1_Click(object sender, EventArgs e)
{
foreach (RadListViewEditableItem item in rlv_Opportunities.EditItems)
{
System.Collections.Hashtable newValues = new System.Collections.Hashtable();
item.ExtractValues(newValues);
string id = item.GetDataKeyValue("lequip_id").ToString();
RadTextBox rtbSO = (RadTextBox)item.FindControl("rtb_SO");
string strT = rtbSO.Text;
}
}
When I apply filter on RCB:
ProductCode.Filter = DirectCast(1, RadComboBoxFilter)
arrow becomes button:
Dear SIR
I have 2 questions on RadGrid edit template:
1) When I added a DatetimePicker control, the Time can't be selected from time popup button. it always shows 0:00. I found it seems not compatible with AjaxToolkit(V15)? is there any solution?
2) I'd like to activate the control change events, e.g. when I change start date time and end date time, I will calculate the time span to display. or I will set control value when an combobox selectedvalue is changed. How do I activate editor's control events?
Thanks very much.