Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
57 views
Image Manager dialog in the Editor works fine on my development machine.  When I upload to a development server (over which I have no control), I get a generic 404 error message (conveniently it doesn't tell me what page it's looking for).  Below are excerpts from my web.config.  Any ideas?  I tried the article on changing the extension from aspx to axd (http://www.telerik.com/community/forums/aspnet-ajax/editor/telerik-web-ui-dialoghandler-aspx-404.aspx), but I get the error that the dialogs need to be added to web.config if I do that.  Thanks!

<system.web> 
    <httpHandlers> 
      <remove verb="*" path="*.asmx" /> 
      <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
      <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
      <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" /> 
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" /> 
      <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" /> 
      <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" /> 
    </httpHandlers> 
<system.web> 
 
 
 
  <system.webServer> 
    <validation validateIntegratedModeConfiguration="false" /> 
    <modules> 
      <remove name="ScriptModule" /> 
      <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
    </modules> 
    <handlers> 
      <remove name="WebServiceHandlerFactory-Integrated" /> 
      <remove name="ScriptHandlerFactory" /> 
      <remove name="ScriptHandlerFactoryAppServices" /> 
      <remove name="ScriptResource" /> 
      <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
      <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
      <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
      <add name="Telerik.Web.UI.WebResourcexxx" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2009.3.1208.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> 
      <add name="Telerik.Web.UI.WebResource" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" /> 
      <add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" /> 
      <add name="Telerik_Web_UI_SpellCheckHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" /> 
    </handlers> 
    <defaultDocument> 
      <files> 
        <remove value="index.html" /> 
        <remove value="index.htm" /> 
        <remove value="Default.asp" /> 
        <remove value="Default.htm" /> 
        <remove value="iisstart.htm" /> 
      </files> 
    </defaultDocument> 
  </system.webServer> 
Rumen
Telerik team
 answered on 19 Feb 2010
1 answer
180 views
Hello,

I have a .txt document that when pasted into the editor, creates <br><br> after each paragraph instead of surrounding each paragraph with <p> tags.  Why would this happen?  I can send you the document to test if needed.

Thanks
Rumen
Telerik team
 answered on 19 Feb 2010
0 answers
172 views
Is it possible to have both close button and a HideDelay?

If the user dont close it manualy, after 20 seconds, it closes itself.


Forget about it, searching around I have found it.

http://www.telerik.com/community/forums/aspnet-ajax/tooltip/autoclose-and-manualclose.aspx
André Freitas
Top achievements
Rank 1
 asked on 19 Feb 2010
3 answers
89 views
Hello,

I am using the integrated RadMultiPage and the RadTabStrip controls in my web application. And in one of my RadPageView I have a fusion chart control.
The issue is in while browsing using Mozilla Firefox and Google chrome the fusion chart reloads every time when RadTab containing fusion chart is selected ( after navigating to other tab and coming back).
The reason for this behavior seems to be that the Mozilla based browsers reloads the flash if the container css property is set to display:none for hiding the unselected tab items.
(Ref: http://www.fusioncharts.com/forum/Topic10506-36-1.aspx).

My question is how does the RadTabStip control hides the unselected RadTab. Is it by using display:none css property OR visiblity:hidden property?..

Is there anyway to force the RadTabStrip control to override visiblity:hidden property instead of Display: none for hiding the unselected tab items.?(so that flash doesn't reloads when RadTab is selected again)

Thanks,
Basit
Basit Mohammed Abdul
Top achievements
Rank 1
 answered on 19 Feb 2010
6 answers
388 views
Hello,
I would like to add the scope attribute to a GridTableCell. I know this can be done for a GridTableHeaderCell. Essentially, what I want to be generated is:
<td scope="row">stuff</td>

for the leftmost table cell. In my BindColumnValues method I have tried the following:
GridDataItem dt = (GridDataItem)e.Item; 
GridTableHeaderCell rowHeader = (GridTableHeaderCell)dt["DocumentNumber"]; 
rowHeader.Scope = TableHeaderScope.Row; 
but, of course, this generates an exception ("Unable to cast object of type 'Telerik.Web.UI.GridTableCell' to type 'Telerik.Web.UI.GridTableHeaderCell'.")

Is there a way to do this? Am I missing something obvious?

Thanks,
Scott


Jeff
Top achievements
Rank 1
 answered on 19 Feb 2010
1 answer
132 views
Hi,

I use the export to Excel function of radgrid, my users have been reporting that when they press "save" from the export dialog there is an extra folder created on their desktop with the same name as the XL file.  Opening the XL file everything looks normal but when they email the XL file to anyone else it seems that ll the data is actully in the extra folder and the emailed file will not open correctly.  Is this something that you are aware of?

We're using IE8 and Q3 2009.

Cheers
Jonathan

    protected void btnExport_Click(object sender, EventArgs e)  
    {  
        LoadResults();  
        radGridResults.ExportSettings.FileName = "FaCTS_" + Request.QueryString["ReportType"] + "_" + DateTime.Now.Day.ToString() + DateTime.Now.Month.ToString() + DateTime.Now.Year.ToString();  
        radGridResults.ExportSettings.ExportOnlyData = true;  
        radGridResults.ExportSettings.IgnorePaging = true;  
        radGridResults.ExportSettings.OpenInNewWindow = true;  
        radGridResults.MasterTableView.ExportToExcel();  
    }  
 
    protected void LoadResults()  
    {  
        //Type reportType = Type.GetType("FaCTSServer." + Request.QueryString["ReportType"].ToString() + ", FaCTSServer, Version=1.0.0.0, Culture=neutralPublicKeyToken=null");  
        //IList _results  = (IList)Activator.CreateInstance((typeof(List<>).MakeGenericType(reportType )));  
 
        Type serviceType = Type.GetType("FaCTSServer." + Request.QueryString["ReportType"].ToString() + "Service" + ", FaCTSServer, Version=1.0.0.0, Culture=neutralPublicKeyToken=null");  
 
        object[] parameters = new object[] { txtSqlWhere.Text };  
 
        try  
        {  
            //Invoking a static method (How to invoke a static method??)     
            IList _results = (IList)serviceType.InvokeMember("GetSearchResults", BindingFlags.Default | BindingFlags.InvokeMethod, null, null, parameters);  
 
            //load the clients  
            //_results = PersonService.GetSearchResults(txtSqlWhere.Text);  
              
            ReportColumn _col;  
            GridBoundColumn boundColumn;  
            radGridResults.MasterTableView.Columns.Clear();  
            foreach (ListItem item in chkLstColumns.Items)  
            {  
                if (item.Selected == true)  
                {  
                    //add a column to the report grid  
                    _col = ReportColumnService.GetByID(Int32.Parse(item.Value));  
                    boundColumn = new GridBoundColumn();  
                    radGridResults.MasterTableView.Columns.Add(boundColumn);  
                    boundColumn.DataField = _col.DisplayName;  
                    boundColumn.HeaderText = _col.Heading;  
                    boundColumn.SortExpression = _col.SearchName;  
                }  
            }  
            radGridResults.DataSource = _results;  
        }  
        catch  
        {  
            throw new ArgumentException("The SQL Where clause was incorrect, please contact your sysadmin");  
        }  
      
    }  
 
Daniel
Telerik team
 answered on 19 Feb 2010
3 answers
111 views
When I create a recurrence with a start and end at say 9am every weekday and then drag one of the occurrences to a new date, say on the weekend, why is it that the start date is reset to 12am midnight and not retained at 9am?
Is this something I need to handle myself as a developer?


cheers.
Peter
Telerik team
 answered on 19 Feb 2010
3 answers
139 views
There are a couple of points in the recent beta release this that touch upon some advanced form.js file changes.

If we are using the custom advanced form approach where we downloaded the advanced form from the samples on how to customize the form, how do these updates affect us?

I personally have done a lot of customizing in the advanced form javascript file.
I realize not everything is done in that file. I'm just wondering if anyone can comment on how I might be affected by this if at all. thanks.
Peter
Telerik team
 answered on 19 Feb 2010
1 answer
146 views
I have a role based scheduler. Each appointment can either be just viewed or edited and viewed. Is there a way to dynamically create the context menu per event based on a persons security role.

jason
Peter
Telerik team
 answered on 19 Feb 2010
1 answer
143 views
I have a radbinaryimage in a radgrid it displays all the images. But i want the radgrid to display 4 or 5 images on the rows instead of a single image..  Can we have that functionality.  If we can  let me know how to do that....

Thanks in advance
shyam
Dimo
Telerik team
 answered on 19 Feb 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?