I have a RADGrid using AJAX where I create a custom ButtonColumn. This column holds buttons (obviously) which need to use Full-PostBacks rather than Partial-PostBacks. The grid also allows for paging. In the grid's ItemCreated() event I add the visible buttons (ie: the first 10 items if paging is set to 10 items per page) to the ScriptManager's RegisterPostBackControl() method. This works perfectly fine.
The problem I have is that when a user jumps to another page, they are causing a Partial-PostBack which redraws the grid with the next set of records to be viewed, which also runs the code to RegisterPostBackControl's. However, these buttons do not perform Full-PostBacks...they stay as Partial-PostBack controls. It seems that the ScriptManager.RegisterPostBackControl() method does not function when called from a Partial-PostBack.
Anyone know how I can add the buttons within the grid to the list of Full-PostBack controls when a user moves to another page of records within the grid?
-Ben
Is there a way to drag a file from windows explorer into the "Rad File Explorer" and have it upload the file?

I found a thread about how to do lines using GeoJSON with RadMap, but I haven't been able to find anything for doing lines with the Kendo Map. The only Kendo Map things I've found with GeoJSON are about doing shapes. Is it possible to do lines on a Kendo Map?



Dear Telerk Support,
I have been using latest Telerik Control (i.e. UI for ASP.NET AJAX Q1 2015 [2015.1.401.40]) within one of my project.
The problem I'm having is with RadNumeric Text Box.
My RadNumeric text box is as defined below:
<telerik:RadNumericTextBox SkinID="UnitRadNumericTextBox" runat="server"
Font-Size="12px" style="vertical-align: middle;border-top:1px solid #cccccc; border-right: 1px solid #cccccc;border-bottom: 1px solid #cccccc;border-left:1px solid #cccccc;background-color: #fff;" Font-Names="Trebuchet MS" Height="22px" Border="1px solid #8384a0"
Value="0.00" NumberFormat-DecimalDigits="2"
Width="92%" MinValue="1" MaxValue="9999.99" >
<FocusedStyle HorizontalAlign="Right" />
<EnabledStyle HorizontalAlign="Right" />
</telerik:RadNumericTextBox>
Problem here is that, for this new DLL, when I click on this RadNumeric TextBox, 0 does not gets selected as whole as it was earlier when we press TAB to redirect to this RadNumeric Textbox.
Actually , when we click on this text box & write 1, it becomes 10 & not 1.
This is the problem in new DLL, when I reverted my entire package to old DLL (i.e. 2015.1.225.40) it all went good.
Please help.
Thanks
Ajay

Hi Team,
I am using radgrid in "put all fields in edit" mode, achieving through the below code .
protected void RadGrid1_PreRender(object sender, EventArgs e)
{
RadGrid1.AllowMultiRowEdit = true;
RadGrid1.MasterTableView.EditMode = GridEditMode.InPlace;
foreach (GridDataItem dataItem in RadGrid1.Items)
{
dataItem.Edit = true;
}
RadGrid1.Rebind();
}
Also I used "RadGrid1.MasterTableView.CommandItemDisplay = GridCommandItemDisplay.Top;" , in order to create a new row to the grid.
Now I need to read all newly entered values from a button.
Please help.
Ramesh