Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
80 views
I came accross this post, which seems to be the issue I am having, my question is how do you do the following to fix the problem?

You will need to be sure that the chart httphandler is served by the same machine, which served the page.

Posted on Feb 17, 2010

Hi mukund,

This is my reply to the bug report you have open:

The httphandler registration is different for IIS6 and IIS7. For IIS7 you need to add an additional registration in <system.webServer> section in your web.config file. You can fine more details in this help topic. We recommend removing the chart httphandler registration completely and using the link in the VisualStudio smart tag (check the second image in this help topic) -- it will register the httphandler correctly for both IIS6 and IIS7.

As for the web farm -- RadChart will work in web farm environment under certain conditions. It would be an issue if the page is served  and therefore the chart image is generated by one machine and the next request for the image itself is served by another machine. Then this second machine will not be able to find the image. You will need to be sure that the chart httphandler is served by the same machine, which served the page.


Please, keep the correspondence in a single thread, so it easier for both you and us to follow it. Thanks.

Sincerely,
Ves
the Telerik team
Ves
Telerik team
 answered on 24 Aug 2011
3 answers
140 views
Looking for a way to access or store an object from a Linqdatasource foreign key.

I have a Radgrid using a Linqdatasource with a nestedviewtemplate and a RadTabStrip/RadMultiPage. I would like to populate a RadGrid on one of RadMultilPage with the foreign key data from the Master RadGrid.

Is this possible?
Iana Tsolova
Telerik team
 answered on 24 Aug 2011
1 answer
40 views
Hi,

I am using the telerik.Web.UI.dll with version 2010.1.415.35.

I am having problem with the Rad Grid filter menu in this version. When ever I click on filter menu it firstly it shows only "Contains" button
and secondly, after clicking on filter button it gives a java script error of parsing as Parsing problem for Enum "Sys&Enum&Parse"(typeof()). something like this.

Please note that, earlier I was using the telerik DLL version of 2008 which I then replaced with 2011.2.712.35. This worked fine with no problem except with change in design. Now, I have removed this and replaced it with 2010.1.415.35 and the above error has occurred.

Can anyone help me or suggest me on this issue. Its urgent.

Thanks.

Martin
Telerik team
 answered on 24 Aug 2011
1 answer
190 views
Hi All,

I am facing a problem with RadWindow and RadListView.

I want to Rebind Perticular ListView on Parent Page on Close of the RadWindow.

I have used a RadTabStrip in side that i have more than one ListViews. I need to Rebind only perticular ListView. 

I have added a code on RadWindow's Button click :
GetRadWindow().BrowserWindow.refreshGrid(args);
GetRadWindow().close();

Which calls following method on Parent Page:

function refreshGrid(arg)
{
     //var btnName = $get("<%=btn.ClientID%>").name;
     //__doPostBack(btnName, "");
     // Above Two Lines code works fine. But the whole page Postback is called. i need only refresh perticular ListView to Rebind.
      
 
     var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>");
     ajaxManager.ajaxRequest('Refresh');
      
}

cs code:
protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
     if (e.Argument.ToString() == "Refresh")
     {        
           lstvTask.Rebind();
     }
}


This code doesn't work for me.

Any help will be appreciated.
Thanks in Advance.

--
Thanks & Regards,
Rakesh Gupta



Marin Bratanov
Telerik team
 answered on 24 Aug 2011
1 answer
256 views
Hi Telerik team, I've been working on a solution requiring that the columns order can be editable, the RadGrid control we are using is on a SharePoint Webpart. We have an editor part where the page manager can edit the order of the columns. When the editing of the webpart is saved & closed the new data is passed to the RadGrid control to update. All the functionality works as expected except the order. This order is set programatically to the columns as it is configured on the editor part, we checked that the column.position is set correctly but the RadGrid is not re-ordering the columns when the Save & Close its done.
We want some support to make this work if possible.

Fun Fact: If any of the filters, grouping, or re order is done on the control (generating a Post-back) all the columns re-order with the specified order in the editor part.

Thanks in advance!!

Here is our code where we set the position of the columns:

Column column = new Column();
                    column.Name = ((Label) repeaterItem.FindControl("lblColumnName")).Text;
                    column.Id = GetColumnId(column.Name);
                    column.Display = ((CheckBox) repeaterItem.FindControl("chkDisplay")).Checked;
                    column.Position = Convert.ToInt32(((DropDownList) repeaterItem.FindControl("ColumnsDropDown")).SelectedItem.Text);
                    colunns.Add(column);

We set these attributes for each columns displayable on the RadGrid control.

Mr. Erwin W. B. Gutbrod
.NET/Sharepoint Developer Jr.
Radoslav
Telerik team
 answered on 24 Aug 2011
3 answers
182 views
Hi,
I have RadTextBox in my aspx page & i want to restrict user to enter any char except aplhabet. But when user enter any other char i want to display error prompt in radtextbox same like it will display in radNumericTextBox when user alphabets.
how can i implement like this?
Martin
Telerik team
 answered on 24 Aug 2011
1 answer
86 views
Hello Telerik Team,
          I have a RadTreeView in which i want to trigger an event in Expand and Colapse
         i tried lot of jquery code but i cant access
jQuery('li.rtLI div > span:eq(2)').live('click', function () {
    //xyz
});
jQuery('li.rtLI div > span.rtPlus').live('click', function () {
    //xyz
});
 I hope this helps.

Regards,
saad
Top achievements
Rank 1
 answered on 24 Aug 2011
1 answer
77 views
since topic titles can't be edited:

Change itemtemplate depending on number of items in datasource



Hello

If my datasource contains less than 10 entries, the listview needs to display the items in a tiled way (divs with float left), but if I get more results, it should be an ordinary list (just divs).

What would be the best way to accomplish this?
Iana Tsolova
Telerik team
 answered on 24 Aug 2011
7 answers
295 views
I use the following javascript to create a radalert :
<script language='JavaScript'> function f(){var oWnd=radalert('The record is successfully saved!',300,100,'RecordSaved',null);oWnd.add_close(function () {returnToParent();});Sys.Application.remove_load(f);}; Sys.Application.add_load(f); </script>

The issue is at times it throws an error like :Unable to get value of the property 'toLowerCase': object is null or undefined" on 
if(d&&d.tagName.toLowerCase()!="body")
Please see attached jpeg for exact description.
Also, sometimes it throws no error but don't display radalert at all.
These are random errors and do not happen every-time and has not particular pattern of occurrence.

Can anyone please tell me why it happens and how can I fix this. This is a very important part of my project as I use the same script on various pages and get same error on each.

Thanks,
Swati
Marin Bratanov
Telerik team
 answered on 24 Aug 2011
2 answers
303 views
Hi,

I need some charting controls for the application I'm developing ( an asp.net webforms application ) and it's required that "parts" of the chart (e.g  a "slice" in a pie chart ) are clickable ( have click events ). For example, a user clicks a slice of a pie chart and the page displays some relevant information.

I want to know if the RadChart control has this sort of event handling where the "OnClick" event reports the "part" of the chart that has been clicked.

Seabus
Evgenia
Telerik team
 answered on 24 Aug 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?