
When trying to add some images using RADEDITOR there is some error that says:
"Cannot deserialize dialog parameters. Please refresh the editor page.
Error Message:Invalid character in a Base-64 string."
so I can only enter text.

I am trying to show/hide a RadAjaxLoadingPanel explicitly. I am using a RadAjaxPanel (want to try avoiding having to change my page to use a RadAjaxManager instead). I have set the ClientEvents-OnRequestStart="RequestStart" ClientEvents-OnResponseEnd="ResponseEnd" for my RadAjaxPanel.
<telerik:RadCodeBlock ID="RadCodeBlock" runat="server"> <script type="text/javascript"> var currentLoadingPanel = null; var currentUpdatedControl = null; function RequestStart(sender, args) { currentLoadingPanel = $find("<%= RadLoadingPanel1.ClientID %>"); if (args.get_eventTarget() == "<%= btnGo.UniqueID %>") { currentUpdatedControl = "<%= RadAjaxPanel1.ClientID %>"; } //show the loading panel over the updated control currentLoadingPanel.show(currentUpdatedControl); } function ResponseEnd() { //hide the loading panel and clean up the global variables if (currentLoadingPanel != null) currentLoadingPanel.hide(currentUpdatedControl); currentUpdatedControl = null; currentLoadingPanel = null; } </script> </telerik:RadCodeBlock>
ResponseStart() and ResponseEnd() are called properly, but the loading panel does not hide when currentLoadingPanel.hide(currentUpdatedControl) is called. The loading panel just stays there forever. This is what my loading panel looks like.
<telerik:RadAjaxLoadingPanel ID="RadLoadingPanel1" runat="server"></telerik:RadAjaxLoadingPanel>
Hello,
I have crated a custom paragraph style. e.g :
The Problem is when I select/highlight the paragraph wrapped in <dt> tag, the drop down match to "Normal" instead of "Definition Term".
Is this a expected behavior? Is there any way to make the selected item in drop down list to be "Definition Term" while I am selecting the paragraph wrapped in <dt> tag?
Thanks and Regards,
Ming Sheng


Hello,
I have a database with links to images and videos.
I would like to bind them into a single radimagegallery.
Is it possible ? Like the example in : https://demos.telerik.com/aspnet-ajax/image-gallery/examples/functionality/templates/defaultvb.aspx but with a database.
How can i do this ?
Thanks a lot

Hi everyone,
I'm trying to build a page that shows a radgrid with a series of rows. Each row has a role name (from oracle) and a radio button with continue or revoke and a comments field. Pretty simple right? So I would like the user to be able to click on Continue or Revoke for each role and then add a comment if they like. At the end they can hit the "save changes" button.
It seems like with Batch Edit mode, you have to select a row first, then click on a radio button. Which is two clicks instead of one. But if you don't do that then you don't get the command in the GridBatchEditingEventArgs of the BatchEditCommand event.
Has anyone else been able to successfully implement this type of functionality? Is there a trick of some sort?
Thanks in advance,
Cory

Hi,
When I have content in the editor like:
<div class="container">
<div class="row">
aaaaa
</div>
</div>
Adding " bbbb cccc" in Design mode and give Enter after aaaa would result in the following HTML:
<div class="container">
<div class="row">
aaaaa </div>
<div class="row">
bbbb ccccc
</div>
</div>
So the div tag is splitted up. We think it would be logical to do the split and add a <p> tag around the content of the new div so the text paddings are right like so:
<div class="container">
<div class="row">
aaaaa </div>
<div class="row">
<p>bbbb ccccc</p>
</div>
</div>
Of course this would only happen when NewLineMode is in default (paragraph) position
Any thoughts?
Marc


Hello Admin.
I have a Grid, it is using EditorTemplate("_StaffTmp"):
01. Html.Kendo().Grid<StaffDto>()02. .Name("staffGrid")03. .Columns(columns =>04. {05. columns.Bound(p => p.StaffCode);06. columns.Bound(p => p.FullName);07. })08. .Editable(editable =>09. {10. editable.Mode(GridEditMode.PopUp).TemplateName("_StaffTmp");11. })12....
Inside "_StaffTmp" view, I set up a Grid and use ClientDetailTemplateId for it:
01.@(02. Html.Kendo().Grid<StaffCertificatesDto>()03. .Name("staffCertsGrid")04. .Columns(columns =>05. {06. columns.Bound(p => p.Code).Title(LanguageData["L-00065"]);07. columns.Bound(p => p.Name).Title(LanguageData["L-00066"]);08. })09. .ClientDetailTemplateId("salaryDetailGrid1")10. .DataSource(dataSource => dataSource11. .Ajax()12. .PageSize(20)13. .Model(model =>14. {15. model.Id(p => p.StaffCertificateId);16. model.Field(f => f.Code).DefaultValue("Code");17. model.Field(f => f.Name).DefaultValue("Name");18. model.Field(f => f.AlertLevel1).DefaultValue(0);19. })20. .Read(read => read.Action("LoadStaffCertificate", "Staff", new { @area = "Office" }).Type(HttpVerbs.Post))21.))22. 23.<script id="salaryDetailGrid1" type="text/kendo-tmpl">24. @(25. Html.Kendo().Grid<StaffCertificatesDto>()26. .Name("salaryDetailGrid1_#=CertificateId#")27. .Columns(columns =>28. {29. columns.Bound(p => p.Code).Title(LanguageData["L-00065"]);30. columns.Bound(p => p.Name).Title(LanguageData["L-00066"]);31. })32. .DataSource(dataSource => dataSource33. .Ajax()34. .PageSize(20)35. .Model(model =>36. {37. model.Id(p => p.StaffCertificateId);38. })39. .Read(read => read.Action("LoadStaffCertificate", "Staff", new { staffId = "#=StaffId#" }).Type(HttpVerbs.Post))40. ).ToClientTemplate())41.</script>
But I got an error in console browser when I ran: "Uncaught Error: Invalid template:' <div class="k-widget k-grid" id="salaryDetailGrid1_#=CertificateId#"><table><colgroup><col /><col /></colgroup><thead class="k-grid-header"><tr><th class="k-header" data-field="Code" data-index="0" data-title="Code" scope="col"><span class="k-link...". Even, I can't open the popup "_StaffTmp" when I edit.
If I remove ".ToClientTemplate()" in detail grid id = "salaryDetailGrid1", I can run and open the popup. But my detail grid id = "salaryDetailGrid1" didn't work and I got another error in console browser: "Uncaught SyntaxError: Unexpected token < at eval (<anonymous>)....".
Could you help me resolve my issue ? Please explain to me why it is. Thanks !!!