Telerik Forums
UI for ASP.NET AJAX Forum
9 answers
566 views
Hello,

I have three dropdownlists that filter each other, so, in order to avoid full postbacks i used ur RadAjaxManager. I am getting the following error on some machines:

Sys.WebForms.PageRequestManagerServerErrorException. An error ocurred while processing the request on the server. The Status code returned was:500

Sometimes i get the error.. and it makes it very dificult to debug, because i dont get it even once on my machine and some clients get it..
Sebastian
Telerik team
 answered on 21 Mar 2011
5 answers
267 views
Hello, I am experiencing a bizarre problem in my radgrid's rendering behavior in IE8 Compatibility Mode and Google Chrome browsers, in Firefox 3.5 and IE 8 it works perfectly.  For some reason, the radgrid renders itself at the bottom of the containing panel (IE8 Compatibility Mode) or its header expands indefinitely horizontally (Chrome).  I am including the following screenshots of the mentioned problems so  that you can aid me in solving this more effitiently.  Thanx!!

Tsvetina
Telerik team
 answered on 21 Mar 2011
9 answers
136 views
Hello,

I recently upgraded to Telerik.Web.UI_2008_3_1327_dev_hotfix. As soon as I did this all RadWindows in Firefox "jump around" and "flash" on the screen.  I made a test solution using an older Telerik.Web.UI.DLL and the RadWindow worked fine. Simply changing to the newest .DLL made the radwindow practically unusable in FireFox.

In IE it works/looks just fine.

Is this already a known issue? When can we expect a fix?

Thanks,
ethan

Georgi Tunev
Telerik team
 answered on 21 Mar 2011
3 answers
104 views

Hi

 

 

Hi apologies if this is a silly question but i have searched the forums and help and can’t find an example

 

I’m using a radgrid with a EditFormType="Template" in the template i have a  date picker and 2 timepickers. I would like when i change the datepicker on the postback this updates the selected date of the time pickers.  I’ve found lots of examples of how to access the controls when ItemDataBound is called but how can i reference other editform controls programmatically once the editform is showing?

 

The grid is bound to a sql datasource and the updates and inserts are working perfectly bar the time picker bringing in todays date rather than the date set by the separate  date picker.

 


 

Many thanks in advance

Ross

Princy
Top achievements
Rank 2
 answered on 21 Mar 2011
1 answer
49 views
Hi,

    Issue related to Image Manager dialogue, here first time when i add image to editor content area it works. But then i try to open second time i notice issue, like image manager dialogue it self doesn't open at all. Where as other dialogue boxes like document manager etc., are working fine.

   This is strange issue, well after clearing browser content i retried image manager dialogue works fine able to upload image, tried to open as many times. But once i add image to editor content area and save content, after that if i open editor and open image manager dialogue it doesn't work again.

  Once i have also noticed issue with b.parentnode() is not getting detected.

Please let me why this kind of issue is happening, its very critical and answer me as soon as possible.

please let me even know do you have any online chat option.
Dobromir
Telerik team
 answered on 21 Mar 2011
3 answers
255 views
Hi guys
I am using file explorer to select the location to create an sql backup in c sharp. I want to explore file and folders in c drive and other drives. How is it possible?.
I use

string[] viewPaths = new string[]
                {                  
                   @"~/"
                };

FileExplorer1.Configuration.SearchPatterns = new[] { "*.bak" };
FileExplorer1.Configuration.ViewPaths = viewPaths;


in page load, in this way I can only explore from root of the project.
I want to explore C: and others drives.
Anybody can help me?
Thanks
Ben
Dobromir
Telerik team
 answered on 21 Mar 2011
1 answer
104 views
I need to get a value from a griddatabound datafield and pass it on to my context menu events.
at the moment i only get the index, is there any way to do this? can i somehow store the selected value in the input field and retreive it from the radmenu clicked event?


function RowContextMenu(sender, eventArgs)
{
    var menu = $find("ctl00_phContent_RadMenu1");
    var evt = eventArgs.get_domEvent();
      
    if(evt.target.tagName == "INPUT" || evt.target.tagName == "A"
    
      return;
    
      
    var index = eventArgs.get_itemIndexHierarchical();
    document.getElementById("radGridClickedRowIndex").value = index;
      
    sender.get_masterTableView().selectItem(sender.get_masterTableView().get_dataItems()[index].get_element(), true);
      
    menu.show(evt);
      
    evt.cancelBubble = true;
    evt.returnValue = false;
  
    if (evt.stopPropagation)
    {
       evt.stopPropagation();
       evt.preventDefault();
    }
}


</MasterTableView>
    <ClientSettings AllowDragToGroup="True">
        <ClientEvents OnRowContextMenu="RowContextMenu">
        </ClientEvents>
    <Selecting AllowRowSelect="true" />
  
    </ClientSettings>


<input type="hidden" id="radGridClickedRowIndex" name="radGridClickedRowIndex" />
  
    <telerik:RadContextMenu ID="RadMenu1" runat="server" OnItemClick="RadMenu1_ItemClick"
        EnableRoundedCorners="True" EnableShadows="True">
        <Items>
            <telerik:RadMenuItem Text="Öppna ärende" />
            <telerik:RadMenuItem Text="Avsluta ärende" />
            <telerik:RadMenuItem Text="Ta bort ärende" />
        </Items>
    </telerik:RadContextMenu>


protected void RadMenu1_ItemClick(object sender, RadMenuEventArgs e)
    {
        int radGridClickedRowIndex;
  
        radGridClickedRowIndex = Convert.ToInt32(Request.Form["radGridClickedRowIndex"]);

Shinu
Top achievements
Rank 2
 answered on 21 Mar 2011
2 answers
111 views
Hello,

I am working on an application wherein I want the RADPanelBar to be fully expanded 
when the page loads the first time. After that user should have the ability to keep
them expanded or to collapse them.

In my case, only the first tag is expanded and others are collapsed when the page loads. 

Kindly waiting for the reply.


Thanks and Best Regards,
Ruchit 
Ruchit
Top achievements
Rank 1
 answered on 21 Mar 2011
1 answer
91 views

im new user  in your tools 

on  ASP.net  VS2008

and when i add any tools   give me this error

Error creating control 

could not load  assembly 'telerik.web.ui , version=2009.3.1208

thanks for any help 

Shinu
Top achievements
Rank 2
 answered on 21 Mar 2011
3 answers
291 views
Hi!  Could someone help me with getting the value of an email address in a GridHyperLinkColumn from the code behind please?

Here's the aspx code:
<telerik:GridHyperLinkColumn DataNavigateUrlFields="Email1" UniqueName="Email1"   
   DataNavigateUrlFormatString="mailto:{0}" DataTextField="Name" HeaderText="Reviewer" SortExpression="Email1" 
   ShowFilterIcon="false" ShowSortIcon="false" AutoPostBackOnFilter="true" />

Essentially when a user clicks on a submit button for the RadGrid itself, I would like to grab the email address for each selected row in the grid and send an automated email.

Here's the code behind I have for finding the selected rows in the grid, however, I'm not sure how to retrieve the value of the email address from the GridHyperLinkColumn...
If (RadGrid1.SelectedItems.Count > 0) Then
 
            For Each item As GridDataItem In RadGrid1.SelectedItems
                'Add code here to retrieve email address
            Next
End If

Any help would be greatly appreciated.  Thanks!
Princy
Top achievements
Rank 2
 answered on 21 Mar 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?