Hi all. I've been using Silverlight Upload for years (Q3/2013), and it works flawlessly. Now there are many browsers preventing SL from being used, so I've built an AJAX ASP.NET (Q3/2013) site to do the trick. It works fine on my development machine (Win 8.1/VS2012SP1/IIS7), but once deployed on our server (Win Srv 8, FW 4.5) the selected filed 2B uploaded remain in a red state. Using Firefox for developers, I've seen an error 404 trying to load WebResources.axd; so I've followed Telerik's suggestion found in this forum to troubleshoot the error, amended config.web file inserting reference to ScriptResource.axd, with no success. Is there anyone who can help me to get rid of this error? TIA
Saverio Tedeschi

For tri-state TreeView i am trying to check state of 'parent' node.
I tried get_checked() function, but it returns true for both checked and part-checked items
Here is the code just in case:
function rddtRegion_OnClientNodeChecking(sender, args) {
var region_node = args.get_node();
if (region_node.get_value().includes('000')) { // PARENT NODE CHECK
if (region_node.get_checked()) {
Thank you
Hi,
Can anyone please help me on how to achieve updating of Imagebutton on click using GridTemplateColumn with EditTemplate with Batch edit mode similar to this DropDrownList in this demo?
https://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/batch-editing/defaultcs.aspx
Thanks in advance!
Please help ASAP
How to Increase the Width of ContextMenu Filter in RadGrid
<asp:LinkButton ID="ItemLinkButton" runat="server" CommandName="Select"> <%# Eval("Value1") %><br /> <%# Eval("Value2") %><br /> <%# Eval("Value3") %><br /> <%# Eval("Value4") %></asp:LinkButton>protected void RadListView_ItemCommand(object sender, RadListViewCommandEventArgs e){ if (e.CommandName == "DeSelectAll") { RadListView rlv = sender as RadListView; if (rlv.SelectedItems.Count == rlv.Items.Count) { foreach (RadListViewDataItem item in rlv.SelectedItems) { item.Selected = false; } } else { foreach (RadListViewDataItem item in rlv.Items) { item.Selected = true; } } }}I have a RadGrid which has 7 columns. I am using InLine editing for my Edit Mode. What I am looking for is a concise way to check to see if anything changed on the Update Command, without having to look at each cell / column for the row that is being edited. Is there a way I can check to see if anything on this row was changed and then if so i can loop through each column and check, but if not I will not do anything? I am looking for something on the server side not client side.
thanks
doug
Let me first start off by saying that this problem is in Firefox only.
I'm trying to use the ImageEditor in a simulated "popup" with an iframe inside of it. See the attached example-usage.jpg for a sample of how I intend to use it.
The typeError specifically occurs when LiteView.js from the ImageEditor resources. See the attached console-log.jpg for the screen capture of the console log indicating the error.
I know that Firefox has issues with getComputedStyle if the iframe is hidden with display:none - mine is not. I know that there are several other quirks with getComputedStyle in Firefox specifically.
If I move the editor out of the "popup" and into a regular page it functions fine.
Is there anyway to force a width with CSS or javascript so that getComputedStyle will return a value. Can I override a javascript function on this page to prevent the typeError? Do you guys know what LiteView.js is trying to do?
Any solutions appreciated.
Hi,
Using this ajaxify exampleI need execute code in codebehind, and then update the master page control
Something like this:
Content Page
protected void Page_Load(object sender, EventArgs e){ RadAjaxManager AjaxManager = RadAjaxManager.GetCurrent(Page); RadMenu RadMenu1 = (RadMenu)this.Master.FindControl("RadMenu1"); AjaxManager.AjaxSettings.AddAjaxSetting(btnSaveChanges, RadMenu1);}protected void btnIncrease_Click(object sender, EventArgs e){ ...
context.SaveChanges();
// And then, Update Radmenu in MasterPage }
In my scenario, RadMenu have a CSS indicador of numbers of items in database updated in Page_Load(). But, when I click in btnSaveChanges in Content Page, always RadMenu update before database is changed.
Any way to reverse this?
Thank you!
| <telerik:AjaxSetting AjaxControlID="Button1" > |
| <UpdatedControls > |
| <telerik:AjaxUpdatedControl ControlID="container" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="Button2" > |
| <UpdatedControls > |
| <telerik:AjaxUpdatedControl ControlID="container"/> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="Button1,Button2" > |
| <UpdatedControls > |
| <telerik:AjaxUpdatedControl ControlID="container" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| OVERFLOW: auto; WIDTH: 100%; HEIGHT: 10px |