Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
116 views
I have a page with RadSplitter with 2 RadPanes. I am setting the contenturl of those 2 radpanes on onload of the radPane holder page .

There are several buttons on the second page, can I reload the content of first RadPane when I click on any button the second RadPane page.

The code for the page which holds RadSplitter is ;

<div> 
 
<telerik:RadSplitter id="RadSplitter1" runat="server" height="510" width="930"   
 
Orientation="Horizontal">  
 
<telerik:RadPane id="RadPane1" runat="server"   
 
> </telerik:RadPane> 
 
<telerik:RadSplitBar id="RadSplitbar1" runat="server" collapsemode="Forward"></telerik:RadSplitBar> 
 
<telerik:RadPane id="RadPane2" runat="server"   
 
height="195" ></telerik:RadPane> 
 
</telerik:RadSplitter> 
 
</div> 
 
 
PageLoad of RadSplitter page is:
protected void Page_Load(object sender, EventArgs e)  
        {  
            string webpage1 = "";  
            webpage1 = "WebForm1.aspx?guid=" + Request.QueryString["stguid"].ToString() ;              
            string webpage2 = "";  
            webpage2 = "WebForm2.aspx?guid=" + Request.QueryString["guid"].ToString() ;            
            RadPane1.ContentUrl = webpage1;  
            RadPane2.ContentUrl = webpage2;  
        } 

My question is : Can I reload the contenturl of RadPane1 from a button click on page WebForm2.aspx?

Thanks
Tsvetie
Telerik team
 answered on 07 Jan 2010
2 answers
150 views
Below is my code, the two problems I have is the loading panel never shows up while binding,
the second is the grid shows 11 empty rows untill it finishes binding to the Webservice this
is based on the page size i do believe even though I am not using pageing. It also does not
render the images past the 11th row


<
telerik:RadScriptBlock ID="rsb" runat="server">  
   <script type="text/javascript">  
function NavRowClick(sender, eventArgs)  
{  
    window.location.href = "<%= Request.ApplicationPath %>/" + eventArgs.getDataKeyValue("URL")  
}  
function NavRowDataBound(sender, eventArgs)  
{  
    if (("<%= Request.ApplicationPath %>/" + eventArgs.get_dataItem().URL) == document.location.pathname)  
    {  
        eventArgs.get_item().addCssClass("navSelected");  
    }  
}  
   </script> 
</telerik:RadScriptBlock> 
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">  
                <AjaxSettings> 
                    <telerik:AjaxSetting AjaxControlID="rg_n">  
                        <UpdatedControls> 
                            <telerik:AjaxUpdatedControl ControlID="rg_n" LoadingPanelID="rlp" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting> 
                    </AjaxSettings> 
                    </telerik:RadAjaxManager> 
<telerik:RadAjaxLoadingPanel runat="server" ID="rlp" /> 
<telerik:RadGrid ID="rg_n" runat="server" ShowHeader="false" CssClass="n" AlternatingItemStyle-CssClass="nav" ItemStyle-CssClass="nav" AutoGenerateColumns="false" AllowPaging=false>  
    <ClientSettings ClientEvents-OnRowClick="NavRowClick" ClientEvents-OnRowDataBound="NavRowDataBound" > 
        <DataBinding Location="~/main.asmx" SelectMethod="GetNavigation" EnableCaching="true" /> 
    </ClientSettings> 
    <MasterTableView ClientDataKeyNames="URL">  
        <NoRecordsTemplate>No Menu Items</NoRecordsTemplate> 
        <Columns> 
            <telerik:GridImageColumn DataImageUrlFields="ImageURL" DataImageUrlFormatString="~/MasterPages/images/{0}" DataType="System.String" DataAlternateTextField="Name" ImageHeight="16" ImageWidth="16" ItemStyle-Width="16" ItemStyle-Height="16"></telerik:GridImageColumn> 
            <telerik:GridBoundColumn DataField="Name" ItemStyle-HorizontalAlign="Left" ></telerik:GridBoundColumn> 
        </Columns> 
    </MasterTableView> 
</telerik:RadGrid> 
Iana Tsolova
Telerik team
 answered on 07 Jan 2010
1 answer
153 views
I use IIS 6.0.
I have domain: www.test.com an on this site have Teterik with versiom ........ .20
And i have www.test.com/test where test is Virtual Directory and this directory work on .35


I get "Parsing Error"  Telerik.Web.UI, Version=2009.3.1201.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4
My web.config for .20
<?xml version="1.0"?> 
<configuration> 
  <appSettings> 
    <add key="Telerik.Skin" value="WebBlue"/> 
  </appSettings> 
    <connectionStrings> 
    </connectionStrings> 
    <system.web> 
        <customErrors defaultRedirect=""/> 
        <compilation debug="false"
            <assemblies> 
                <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 
                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
        <add assembly="Telerik.Web.UI, Version=2009.3.1201.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> 
      </assemblies> 
    </compilation> 
    <pages> 
      <controls> 
              <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
        <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
        <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2009.3.1201.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> 
      </controls> 
    </pages> 
    <httpHandlers> 
            <remove verb="*" path="*.asmx"/> 
            <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
            <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
            <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/> 
             
            <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false"/> 
      <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false"/> 
      <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false"/> 
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false"/> 
             
        </httpHandlers> 
    </system.web> 
  <system.webServer> 
    <validation validateIntegratedModeConfiguration="false" /> 
    <modules> 
      <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
    </modules> 
    <handlers> 
      <remove name="WebServiceHandlerFactory-Integrated" /> 
      <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="ASBXHandler" verb="GET,HEAD,POST" path="*.asbx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
      <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" /> 
    </handlers> 
  </system.webServer> 
</configuration> 
 

My web.config for 35
<?xml version="1.0"?> 
 
<configuration> 
    <configSections> 
        <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
            <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
                <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> 
                <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
                    <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/> 
                    <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> 
                    <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> 
                    <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> 
                </sectionGroup> 
            </sectionGroup> 
        </sectionGroup> 
    </configSections> 
    <appSettings> 
    <add key="Telerik.Skin" value="Vista"/> 
  </appSettings> 
  <connectionStrings> 
  </connectionStrings> 
    <system.web> 
    <customErrors mode="Off"/> 
 
    <compilation debug="true"
            <assemblies> 
        <remove assembly="Microsoft.Web.Preview, Version=1.3.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
        <remove assembly="Telerik.Web.UI, Version=2009.2.826.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/> 
        <remove assembly="Telerik.Web.UI, Version=2009.3.1201.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/> 
                <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
                <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 
                <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
                <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
                <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 
                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
      </assemblies> 
      <buildProviders> 
        <remove extension="*.asbx"/> 
      </buildProviders> 
        </compilation> 
        <pages> 
            <controls> 
                <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 
                <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 
                <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2009.3.1201.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/> 
            </controls> 
        </pages> 
        <authentication mode="Windows"/> 
        <httpHandlers> 
      <remove verb="*" path="Telerik.Web.UI.SpellCheckHandler.axd"/> 
      <remove verb="*" path="Telerik.Web.UI.DialogHandler.aspx"/> 
      <remove verb="*" path="Telerik.RadUploadProgressHandler.ashx"/> 
      <remove verb="*" path="Telerik.Web.UI.WebResource.axd"/> 
      <remove verb="GET" path="SearchSiteMaps.axd"/> 
      <remove verb="*" path="Diagnostics.axd"/> 
      <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="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false"/> 
            <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false"/> 
            <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false"/> 
            <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false"/> 
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false"/> 
        </httpHandlers> 
        <httpModules> 
            <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 
            <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule"/> 
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression"/> 
        </httpModules> 
    </system.web> 
    <system.codedom> 
        <compilers> 
            <compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                <providerOption name="CompilerVersion" value="v3.5"/> 
                <providerOption name="WarnAsError" value="false"/> 
            </compiler> 
            <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                <providerOption name="CompilerVersion" value="v3.5"/> 
                <providerOption name="OptionInfer" value="true"/> 
                <providerOption name="WarnAsError" value="false"/> 
            </compiler> 
        </compilers> 
    </system.codedom> 
    <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"/> 
            <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" preCondition="integratedMode,runtimeVersionv2.0"/> 
            <add name="RadCompression" type="Telerik.Web.UI.RadCompression" preCondition="integratedMode,runtimeVersionv2.0"/> 
        </modules> 
        <handlers> 
            <remove name="WebServiceHandlerFactory-Integrated"/> 
            <remove name="ScriptHandlerFactory"/> 
            <remove name="ScriptHandlerFactoryAppServices"/> 
            <remove name="ScriptResource"/> 
      <remove name="SearchSiteMaps"/> 
      <remove name="Diagnostics"/> 
            <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="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode,runtimeVersionv2.0"/> 
            <add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" preCondition="integratedMode,runtimeVersionv2.0"/> 
            <add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" preCondition="integratedMode,runtimeVersionv2.0"/> 
            <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" preCondition="integratedMode,runtimeVersionv2.0"/> 
            <add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode,runtimeVersionv2.0"/> 
        </handlers> 
    </system.webServer> 
    <runtime> 
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
            <dependentAssembly> 
                <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/> 
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> 
            </dependentAssembly> 
            <dependentAssembly> 
                <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/> 
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> 
            </dependentAssembly> 
        </assemblyBinding> 
    </runtime> 
</configuration> 
 

TomaszRabiasz
Top achievements
Rank 1
 answered on 07 Jan 2010
1 answer
135 views
I have a simple link button on a page with a RadPanel with the following javascript: 

javascript:window.print();

My RadPanel is structured:
  • RadPanel
    • RadPanelItem
      • ItemTemplate
        • RadGrid

In the RadGrid, I have an approximate 40-50 rows in the grid (no Paging). When I try to print the page, only 25 items print on the page, and the rest are mysteriously gone. Any assistance would be appreciated. Thanks,

Sam

Veselin Vasilev
Telerik team
 answered on 07 Jan 2010
1 answer
81 views
i am using 2008.3.1314.20 version of telerik rad controls for asp.net ajax
i am having problem with radalert

i dont know where to post so i posted it here

please help me out

code is below

string radalertscript = "<script>radalert('message is posted here', 330, 210,'title of box');</script>"
Response.Write(radalertscript);
error message displays
is in the attachment

please help me out...

pls pls..
Svetlina Anati
Telerik team
 answered on 07 Jan 2010
3 answers
72 views
Hi,
   I put a Google map on the Advanced Form right below the Recurrence checkbox.  IE8 and FireFox show the map within the advanced form properly.  However IE7 has a problem with the advanced form scrolling.  When scrolling up or down the window of the advanced form, the map moves along the scrolling and stays on top of all other form objects.  Does anybody know the answer to this?
Dimitar Milushev
Telerik team
 answered on 07 Jan 2010
1 answer
119 views
Hi,
    I saw several posting but could not find one that works. How can i make the RadDock show up center of the screen. By the way, the telerik getViewPortSize function does not  work and crashed. Do you have a working example. Thanks,

Regards,

Osman
Shinu
Top achievements
Rank 2
 answered on 07 Jan 2010
1 answer
81 views
Is there a forum to contact people/companies who are skilled in creating custom skins (visually as well as technically)?    I like the glassy looks of the forest theme for example, but changing the sprite files and making color choices is beyond my comfort zone and time constraints.  We know graphic designers, but would prefer someone who understands the telerik implementation of skins and can work independently. General feedback we have received is that the orange selected row in the forest grid is too bright and bold for example.  We also have needs to completely customize a skin to match our customers (and our) website look and feel.  We use  RadGrid heavily, FormDecorator with all standard html controls, radtext/numeric boxes, treeview, calendar, splitter/pane regularly.  Tabs, upload and a variety of other controls less frequently.  

I would envision creating a sample page with many controls on it if the designer needed us to do that, and passing a URL to a customer website and the interested party would take control.  Some of our customers do not have the best website design to work off of, so some creativity will be required.  Experience in professional web application design could lead to other opportunities.

Please note, we are NOT looking to hire an employee on either a full or part-time basis.  We are looking for a professional relationship with some entity who understands telerik skins and possesses a keen graphic inclination that we can rely on for our skin creation/modification needs.

Thank you.

Joel Tolbert
http://www.PeriscopeIQ.com
Georgi Tunev
Telerik team
 answered on 07 Jan 2010
2 answers
135 views
Hi fellas,

When i double click a time slot, i get a popup requesting the title of the appointment. I want to get some more details from the user to add it in the appointment. So i need to modify the popup to add some of my controls and get value from them when the save is clicked. How to achieve that?

Thank you.
NLV
Top achievements
Rank 1
 answered on 07 Jan 2010
1 answer
257 views
Hi,

I am trying to set the font for my x axis label with this code :

radChart1.PlotArea.XAxis.AxisLabel.TextBlock.Appearance.TextProperties.Font =

new System.Drawing.Font("Arial", 20);

but it is not working.

I have also tried setting

 

radChart1.PlotArea.XAxis.AxisLabel.TextBlock.Appearance.Dimensions.AutoSize =

false;
first but it does not work too.

Any help is greatly appreciated.
Thanks!!!

wayne

 

Ves
Telerik team
 answered on 07 Jan 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?