Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
140 views
hello, telerik:

I am from China, Chinese characters will be placed in a rad grid, but when I export the grid to a pdf format file, I find all the contents of pdf file is '#' except english characters.

What should I do to export the correct chinese characters?

thank you.
Von Aerich
Top achievements
Rank 1
 answered on 09 Feb 2009
1 answer
131 views
I have a requirement to show a selected radio button in an underlined format. Is there any default option in telerik to achieve this?
Sebastian
Telerik team
 answered on 09 Feb 2009
1 answer
111 views
I have installed telerik in my system. But by default, the controls doesnt get added to the toolbox. Each time, manual operation is required to Choose telerik Items to add to the tool box. Is there any solution for this??
Sebastian
Telerik team
 answered on 09 Feb 2009
5 answers
210 views
Hi

We have purchased Telerik UI suite in Nov, 07.

RadControls for AJAX is using a strong name key.

We want to add new features to the code using our own assemblies which are not strong named. So, we are not able to build the code with our assemblies referenced.

It would not be possible for us to make our assemblies strong named.

So, can you please give us the solution to remove the strong name constraint to build Telerik code.

We have tried at our end the following:
In project properties, we unchecked the option Sign the Assembly, and deleted the snk files in the projects Telerik.Web.Charting and Telerik.Web.UI
We got the error:
Error    384    Friend access was granted to 'Telerik.Web.UI, PublicKey=0024000004800000940000000602000000240000525341310004000001000100d7f4574851eb0ea83c0b26dfc9d3569e654c8b902eaab99858ddb7aa4b9b68190f74571d9b572b93c089f3b86a74fe1f72ead3eafc6c928ff4576e3bc49904d1360f6776898125ecb928a5365968d9d1931987e382c0110a944139aba1035d0e0d9cfe84803a8d02ae8d38f9709fd910558bb1233840b3eaa2875b1f35d024b3', but the output assembly is named 'Telerik.Web.UI, Version=2008.2.1001.0, Culture=neutral, PublicKeyToken=null'. Try adding a reference to 'Telerik.Web.UI, PublicKey=0024000004800000940000000602000000240000525341310004000001000100d7f4574851eb0ea83c0b26dfc9d3569e654c8b902eaab99858ddb7aa4b9b68190f74571d9b572b93c089f3b86a74fe1f72ead3eafc6c928ff4576e3bc49904d1360f6776898125ecb928a5365968d9d1931987e382c0110a944139aba1035d0e0d9cfe84803a8d02ae8d38f9709fd910558bb1233840b3eaa2875b1f35d024b3' or changing the output assembly name to match.    d:\Projects\Framework\Telerik\RadControlsAjaxSource\Telerik.Charting\bin\Release\Telerik.Charting.dll    Telerik.Web.UI.20

Can you please provide a solution for this?
Please mark a copy of reply to: chetan.mehta@cognizant.com

Regards
Chetan
Atanas Korchev
Telerik team
 answered on 09 Feb 2009
0 answers
138 views
Howdy, I'm having problems after an insert of an Appointment.

I work with custom objects in a three layer application.
Besides that i use a resource "Locations"  and the scheduler does show 3 locations. 
I have followed your examples/tutorials and it works great.
I can drag an drop an Appointment from one location to another and an update event fires.

When i insert a new Appointment, it inserts.

But after an insert the Scheduler doesn't allow drag and drop anymore. Well, I can drag and drop, but it jumpes back to the original position. No update-event is fired?

So, i made a method that reloads the entire page after an insert and than it works.
But that's not what i want of course because the problem isn't the insert or the update.
It's is just that the update event isn't fired anymore after an insert.

What to do?
Wiep
Top achievements
Rank 1
 asked on 09 Feb 2009
1 answer
221 views

How set Height Offset property nested Horizontal and vertical radspiltters?



<
telerik:RadSplitter ID="MainSplitter" runat="server" Height="100%" Width="100%" Orientation="Horizontal" SplitBarsSize="2" HeightOffset="????">

<telerik:RadPane ID="TopPane" runat="server" Height="72" MinHeight="72" MaxHeight="120">

</telerik:RadPane>

 

<telerik:RadSplitBar ID="RadsplitbarTop" runat="server" CollapseMode="None"/>

<telerik:RadPane ID="MainPane" runat="server" Scrolling="none" MinWidth="500">

<telerik:RadSplitter ID="NestedSplitter" runat="server"

SplitBarsSize="8" HeightOffset="??????"  VisibleDuringInit="false">

<telerik:RadPane ID="LeftPane" runat="server" Width="220">

<telerik:RadSplitter ID="RadSplitter2" runat="server" Orientation="Horizontal" SplitBarsSize="8" HeightOffset="??????" >

<telerik:RadPane ID="RadPane1" runat="server" Height="75%" Width="100%">

 

</telerik:RadPane>

<telerik:RadSplitBar ID="RadSplitbar2" runat="server" CollapseMode="Backward"

></telerik:RadSplitBar>

<telerik:RadPane ID="bottomPane" runat="server" Height="25%" Width="100%" >

</telerik:RadPane>

</telerik:RadSplitter>

</telerik:RadPane>

<telerik:RadSplitBar ID="VerticalSplitBar" runat="server" CollapseMode="Forward"/>

<telerik:RadPane ID="ContentPane" runat="server">

<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">

 

 

</asp:ContentPlaceHolder>

</telerik:RadPane>

</telerik:RadSplitter>

</telerik:RadPane>

</telerik:RadSplitter>

Tsvetie
Telerik team
 answered on 09 Feb 2009
1 answer
149 views
Hi,
I have an issue when use RadAjaxManagerProxy to create loading effect and FileUpload control. Following my code:

#.aspx

    <telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="btnImporta">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="lblStatus"/>
                </UpdatedControls>
            </telerik:AjaxSetting>           
        </AjaxSettings>
    </telerik:RadAjaxManagerProxy>

   <div style="padding-left:10px">
        <br />
        <asp:Label ID="lblCaption" runat="server"
            Text="Seleziona il file XML da importare: " ></asp:Label>
        <asp:FileUpload ID="fileUpload" runat="server" Width="300px"/>
        <br />        
        <br /><asp:Button ID="btnImporta" runat="server" onclick="Importa_Click" Text="Importa Dati" />
        &nbsp;
                    
        <asp:Label ID="lblStatus" runat="server"
            Text=""></asp:Label>
    </div>

#.cs

        protected void Importa_Click(object sender, EventArgs e)
        {
            if (fileUpload.HasFile)
            {
                try
                {
                    // Save file to tmp folder
                    fileUpload.PostedFile.SaveAs(TmpFile);
                   
                    // Import data
                    ImportData();                   
                }
                catch(Exception ex)
                {                  
                }
                finally
                {
                 
                }
            }
        }

I select my file, then click on "btnImporta" button: loading image appears and click event is fired but "fileUpload.HasFile" is false. Seems that after postback fileUpload control lost its reference. I try also setting EnableViewState=false but not work.
Do you have any suggestion?

Thanks a lot in advance
Rosen
Telerik team
 answered on 09 Feb 2009
2 answers
162 views
Hi!

We have some customers that have some problems using the editor in Firefox 3.x

I would like to know the status ( if you are gonna fix them or if they cant be fixed ) on the following problems
  • Select a table and copy it and then paste it doesnt work
  • Select a table and center align it causes a visual bug which makes it hard to work with the table
  • Working with form elements (input, textarea etc). Cannot resize them like in IE and theres no contextmenu


Would appreciate an answer so we can report back to our customers.


 

Niclas Ahlqvist
Top achievements
Rank 1
 answered on 09 Feb 2009
1 answer
107 views
hi,
i have a grid with horizantal scroll bar in it every thing is ok
but when i open a form the horizantal scroll bar start from left to right although i use RTL option

Regards,
LPW
Shinu
Top achievements
Rank 2
 answered on 09 Feb 2009
4 answers
338 views
Okay,

The issue here is easy.

Tabstrip + MultiPageView looks, plain and simple, crap. In other words, it looks NOTHING like a 'tab control'.

  • The MultiPageView and TabStrip have a one pixel gap in between them.
  • The MultiPageView needs to be able to have the borders (and the lack of a piece of border under the selected tab) as a 'real tab control' has.
  • There is no padding at all in the PageViews, which needs to be done by hand.
  • CSS is little help with the 'look like a REAL tab control' issue.
Example of how it looks in Telerik default:

How it should NOT look

Mock-up example of how it SHOULD look:

How it SHOULD look

Guess i just found the reason why most other ASP.NET control suites have an actual tab control, instead of some thrown together controls that do not work together properly.

The real issue here is, how the heck am I supposed to demonstrate a web app to a potential customer when it looks like crap?

Also, gigantic workarounds are not an option, after all you call your controls RAD, which stands for RAPID Application Development, not 'Massive Workaround Development'. If i wanted the latter, I'd be using Microsoft standard controls.

Once again, this sort of stuff can cost me a sale, customers are anal after all. In the end, if i do not make this sale, Telerik doesn't make a sale either.

Regards,

Mike
Paul
Telerik team
 answered on 09 Feb 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?