What browsers are supported for copying and pasting images into RadEdtor as Base64 images. I know that for IE only IE 11 is supported but what about for Chrome or Firefox? What are the minimum versions.
Any help is appreciated. Thanks!
Hi,
I have listview that works well with the definition below:
<
telerik:RadListView
ID
=
"lvwUserGroups"
runat
=
"server"
ItemPlaceholderID
=
"groupsPlaceholder"
OnNeedDataSource
=
"lvwUserGroups_NeedDataSource"
DataKeyNames
=
"GroupID"
>
<
LayoutTemplate
>
<
div
class="RadListView RadListView_<%# Master.SkinManager.Skin %>" >
<
table
class
=
"mainTable"
>
<
thead
>
<
tr
class
=
"rlvHeader"
>
<
th
class
=
"thcenter"
>Enabled</
th
>
<
th
>Group</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
asp:PlaceHolder
id
=
"groupsPlaceholder"
runat
=
"server"
>
</
asp:PlaceHolder
>
</
tbody
>
</
table
>
</
div
>
</
LayoutTemplate
>
</
telerik:RadListView
>
protected
class
userGRPTemplate : ITemplate
{
private
ADScrubWeb.HTMLHelper helper =
new
ADScrubWeb.HTMLHelper();
public
userGRPTemplate()
{
}
public
void
InstantiateIn(Control container)
{
TableRow tr =
new
TableRow();
container.Controls.Add(tr);
helper.AddControlToParent(container, helper.AddBoundHiddenField(
"GroupID"
));
helper.AddControlToParent(tr, helper.AddBoundCheckBox(
"Enabled"
),
true
, HorizontalAlign.Center);
helper.AddControlToParent(tr, helper.AddBoundTextBox(
"GroupName"
, BorderStyle.None,
true
),
true
, HorizontalAlign.Left);
}
}
public
CheckBox AddBoundCheckBox(
string
controlID)
{
CheckBox tmp =
new
CheckBox();
tmp.ID = controlID;
tmp.DataBinding +=
delegate
(
object
sender, EventArgs args)
{
CheckBox control = ((CheckBox)sender);
RadListViewDataItem listViewDataItem = ((RadListViewDataItem)control.NamingContainer);
control.Checked = lsuGeneral.IsTrue(DataBinder.Eval(listViewDataItem.DataItem, controlID).ToString());
};
return
tmp;
}
I would like to react to the user clicking the bound checkbox so I can do auto-updates without the user clicking an update button. I tried wiring up the checkbox CheckedChange event in the ITemplate but that didn't fire, anyway I would still need to know which row's checkbox was clicked.
Any ideas?
Hi,
I have a couple of questions:
1. Is there a way to know when the ImageEditor is being closed by the user? i.e. when the user is clicking the cancel button or the X button?
2. When the ImageEditor is "closed", the underlying object is not yet disposed, is there a property of the object that can be used to check if it is closed ?
Thanks
Elie
We are using version 2014.1.403.35
IE 9
case 46: //Delete
if (!(event.srcElement.type == "text") && !(event.srcElement.type == "textarea")) {
GetGrid().get_masterTableView().fireCommand("Cancel", "");
radconfirm(prompt, clientCallBackFunc);
}
break;
Thanks
Muhammad
Hello,
is it somehow possible to sort the tasks e.g. by start date. It seems that it's only possible to sort the tasks inside the gantt by custom columns when using a custom gantt provider. Sorting by a standard column like title or start date is ignored. Thanks.
Regards,
Felix
Hi,
I need to synchronize the RadScheduler with the Exchange server account using Exchange Web Services. I used the RadScheduler SDK uploaded on the official web site :
http://docs.telerik.com/devtools/aspnet-ajax/controls/scheduler/data-binding/providers/exchange-provider
An error was generated on SharePoint Side: System.Net.WebException: The remote name could not be resolved: (DomainName) knowing that the exchange web service is runing properly.
I use SharePoint 2010 and Telerik.Web.UI, Version=2015.1.401.35
Thank you for your support.
Regards,
Hello,
I have come across a problem with the editor.
We have recently upgraded the telerik controls from V 2013 to V 2015.2.623.45.
After upgrade new version that some functionality are messed up.
Steps to reproduce the issue
1 - Add below content HTML mode.
<html><head> </head><body style="-ms-zoom: 100%;"><a href="http://google.com?q=<input type='button' style='background-color: lime;border:none;padding:2px;' value='## test ##' onclick='return window.parent.DynamicVariableHandler(this);' data-varname='IyNmaXJzdG5hbWUjIw==' data-index='81' />" target="_blank">Name</a></body></html>
2 - Back to Design view and link is crashed
This scenario is working fine in Telerik V 2013. However, latest version of telerik does not handle this and link crashes.
This can easily be reproduced on your demo site as well(IE Browser).
Refer below link for more idea.
http://screencast.com/t/VuCKbcL4c0D
Please Suggest ASAP as it is blocker for us.
Thanks
Hi,
Just want to ask how to put spacing between files and action buttons? I have attached a screenshot and highlighted the part on which I need to add spacing. Thanks.