I have set up a page using <telerik:RadAjaxManager> and <asp:Panel>. The <asp:Panel> is ajaxified.
Within the <asp:Panel> I have a button. This button is supposed to "escape" the AJAX mechanism and reload the whole page via PostBack when being pushed.
What do I need to do to have the button reload the whole page, not just the <asp:Panel> area?
Hello,
I am using RadText with TextMode="Password" and used Password Strength Settings this works perfect,Now my requirement is, there should have icon to toggle password (show/hide) field. Please find attached screen shot please let me know is there any kind of control which supports similar kind of functionality.

I am trying to set focus in radgrid batch edit cell in page load. I have used the following code in gridcreated and rowselected event but i can't get focus in that cell please give me some suggestion.
var MasterTableView = SummarySerialNumberGrid.get_masterTableView();
var row = MasterTableView.get_selectedItems()[0];
var SerialNumberCell = MasterTableView.getCellByColumnUniqueName(row, "serialnumber");
var bthEditManager = SummarySerialNumberGrid.get_batchEditingManager();
bthEditManager.openCellForEdit(SerialNumberCell);
Hi Telerik,
Can you please create a working sample project in VB with a RadGrid that has the following properties/specs:
I've been pulling my hair over this for the past 3 days and I can't seem to make it work. If my requirements are not possible, can you please suggest an alternative - my MAIN concern is that the Grid should only allow editing when the "Save Changes" and "Cancel Changes" link buttons appear after the "Edit" link button is clicked.
As always, many thanks in advance.
Virgil Rodriguez
I'm having issues rendering the Gantt Control inside of a custom control. I've set up my control in line with the sample project for using a custom provider, which works outside of my project just fine. When I try and render it within my project, nothing but the divs seem to be rendered. I compared that to what was rendered by the sample project, and a lot of things seem to be missing. I've attached a image of the rendered html.
I get one JavaScript error "A.delayedClick is not a function". Any help would be greatly appreciated.

Hi Telerik,
We are facing an issue of Exporting to XSLS from RadGrid. We recently change our export functionality to XSXL. Currently, we are using
radgrid.ExportSettings.Excel.Format = GridExcelExportFormat.Xlsx;Ihave a functionality to export selected records. When I select some of records from Grid and export them we are getting all the records are exported to xslx file NOT only selected.
The weird thing I faced is that when I change GridExcelExportFormat.Xlsx from GridExcelExportFormat.HTML, it works fine. (Only Selected Records are being exported)
I am using following code to export selected records.
if (radgrid.SelectedItems.Count != 0){ foreach (GridDataItem item in radEntityRecords.MasterTableView.Items) item.Visible = item.Selected;}radgrid.ExportSettings.OpenInNewWindow = true;radgrid.ExportSettings.ExportOnlyData = true;radgrid.MasterTableView.IsFilterItemExpanded = false;radgrid.ExportSettings.UseItemStyles = true;radgrid.MasterTableView.GroupByExpressions.Clear();radgrid.ExportSettings.Excel.Format = GridExcelExportFormat.Xlsx;radgrid.MasterTableView.ExportToExcel();
Radtreeview onnodedrop event:
when i try to acess event argment SourceDragNode (e.SourceDragNode) is Null
I have a refresh button that seems to work on the browser reload but not on the actual refresh button reload. It's using a standard grid. What am I missing?
var gridRefresh = grid.dataSource.query({
sort: { field: "ProductName", dir: "desc" },
page: 2,
pageSize: 20
});
$('a.k-pager-refresh').on('click', function (){
gridRefresh.data("kendoGrid").dataSource.read();
});
