<MasterTableView DataKeyNames="keyName" AllowMultiColumnSorting="True" EditMode="PopUp" CommandItemDisplay="Top"> <EditFormSettings EditFormType="WebUserControl" /> <CommandItemSettings ShowAddNewRecordButton="false" AddNewRecordText="" ShowRefreshButton="false" RefreshText="" /> <CommandItemTemplate> <telerik:RadButton ID="RadButtonDone" runat="server" Text="Done" CommandArgument="Done" CommandName="Edit" ToolTip="Mark the item as done"> <Icon PrimaryIconUrl="Images/done.gif" PrimaryIconLeft="8" PrimaryIconTop="5" /> </telerik:RadButton> </CommandItemTemplate>protected void RadGridMyGrid_ItemCommand(object source, GridCommandEventArgs e){ if (e.CommandName == RadGrid.EditCommandName) { // Change status to 'Done' if (e.CommandArgument == "Done") { SessionState.Current.intKey = GetKeyValueFromRowThatIsAllowedToBeEdited(ValueFromSessionState); e.Item.OwnerTableView.IsItemInserted = false; e.Item.OwnerTableView.EditFormSettings.PopUpSettings.Width = 700; e.Item.OwnerTableView.EditFormSettings.PopUpSettings.Modal = true; e.Item.OwnerTableView.EditFormSettings.UserControlName = "ChangeStatusToDone.ascx"; } }}Hi
I have a Scheduler Control where i have defined a function on onclientappointmentmoveend="OnClientAppointmentMoveEnd" and within my function i have something like this
function OnClientAppointmentMoveEnd(sender, eventArgs) {
MyFunction(eventArgs, "onMove");
}
function MyFunction(eventArgs, action) {
$.ajax(
{
url: url,
data: parameter,
contentType: "application/json; charset=utf-8",
success:
function (data) {
CallbackFunction(data, eventArgs,action);
},
type:'POST',
dataType: 'json',
async: false
});
}
function CallbackFunction(data, eventArgs,action) {
..........
.......
.........
}
Now, my callback function works fine on any windows browser but this callback function is not executed on IPad. Is there something that is missing to make it execute on IPad?
RadGrid rgRotator = (RadGrid)sender;
RadUpload ruThumbnail = (RadUpload)e.Item.FindControl("ruThumbnail");
if (ruThumbnail.UploadedFiles.Count > 0)
{
// execute SaveAs
}

|
Customer |
# of Orders |
# of Products Ordered |
Total Revenue |
|
John Doe |
10 |
23 |
$2300.00 |