Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
82 views
Ah, the joys of coding on a weekend...
So often needing the help of telerik wizards.

Must be missing something totally obvious. Setup a little test with radgrid, button outside of grid, click on button with CommandName="ExportToPdf" and CommandArgument="radgridName". On button click do a radgridName.MasterTableView.ExportToPdf(). All works well. IE pops up a window asking if I want to open or download the pdf. Great.

Back to my project with a large grid, lots of events, Ajax, etc. Same commands. Export command executes. Instead of creating the pdf, it rewrites the webpage with formatting adjusted like for the pdf. IE never responds. No pdf anywhere. Any guess as to what I might be doing wrong?

Thanks.
Chris
Mira
Telerik team
 answered on 15 Sep 2011
1 answer
76 views
Hello Telerik,

In the demo project called helpdesk/webmail on this location:
http://demos.telerik.com/aspnet-ajax/webmail/

When i select the skin Office2010Black, Office2010Silver and Office2010Blue the skin is applied, but the skin selector disappears. Also the highlighted rows on hoovering (mouse move over the grid lines) goes wrong in the first two rows.

this happens in both IE7 and IE8. unfortunately I have to be compatible for IE7 & 8 also... can you figure out why?

Thanks

Erik
Ivan Zhekov
Telerik team
 answered on 15 Sep 2011
6 answers
205 views

Hi,

Now i am able to print RadGrid selected row with the help of following article:
http://www.telerik.com/community/forums/aspnet-ajax/grid/how-to-print-selected-radgrid-row-and-add-new-link-button-in-command-item-template.aspx

I need to print Header Row along with selected row.

How can i achieve above requirement.

Thanks in advance...

Tsvetoslav
Telerik team
 answered on 15 Sep 2011
3 answers
67 views
Our NoRecordsTemplate looks great in IE8 (see attachment) however in IE9 the ExpandRow becomes huge and ruins the look.  Depending on the number of columns, sometimes the ExpandRow can even take 100% of the visible width!  How do we fix it so that the ExpandRow stays constant?

<NoRecordsTemplate>
    <div style="background: url(/Images/noresults-background.jpg) no-repeat 50% 80%; height: 159px">
        <img src="/Images/noresults-magnifying-glass.png" alt="Search icon" align="left"
            style="vertical-align: middle" />
        <div style="padding: 15px">
            <h2 style="margin-left: 142px">
                Sorry, no matching records found.
            </h2>
            <ul style="margin: 15px 10px 0px 145px" class="green-bullets">
                <li>Are you in the correct time range? Double check the Start and End dates below.</li>
                <li>Have you verified that the client is still active? Check the Status dropdown.</li>
                <li>Do you have an assignment to the client still? Ask your System Administrator.</li>
            </ul>
        </div>
    </div>
</NoRecordsTemplate>
Radoslav
Telerik team
 answered on 15 Sep 2011
4 answers
83 views
Are there plans to:
  1. Create help in Help Library format for all products.
  2. Allow (at least as an option) a combined library of all Telerik products?

-- 
Stuart
Stuart Hemming
Top achievements
Rank 2
 answered on 15 Sep 2011
1 answer
53 views
Before I moved to Telerik, I was using another masked text box control.  It had a couple of features that I liked, and would like to suggest you add to your masked text box.

I would like to see a MaskedEditValidator control that can validate that the input is there and conforms with the mask.  It would take the place of both a RequiredFieldValidator and the RegularExpressionValidator, and would not require you to come up with a regular expression to match your mask.

In conjunction with that, you would have mask characters that indicate required entries.  For example, for a US zip code, which can be either five or nine digits, you would have a mask like: 00000 #####

This means that the first five digits are required to have a valid entry, but the second four are not.  That may not be the perfect example, but you get the idea.
Maria Ilieva
Telerik team
 answered on 15 Sep 2011
6 answers
109 views
I have a web application where I can dynamically add RadDocks, and I need to know how to identify the dock on which I click, as I can do this else there is no click event, or the selected property.

Note.
I have de latest version of controls 

 Thanks
Slav
Telerik team
 answered on 15 Sep 2011
2 answers
112 views
Hi. I have a website where there a some different types of data (A, B, C...). The obvious solution is for me to have a separate page to display each type of data (Page_A, Page_B....). Each would have a listview to display a list of the corresponding data and each listview would be different to reflect the different types of data and also the different functionality required for each type/list. HOWEVER, there is some complex functionality separate to the actual listviews that would be common to all of the pages. This functionality is, in part, used to produce the actual datasource required for the listview.

So I have a choice. Multiple pages that have different lists displayed on each page but which replicate common functionality.

Or I create a single page that has the common functionality which also generates the datasource and that single page could have multiple listviews but then attach/bind the datasource to just one of the listviews. That would mean that there are some other listviews on the page that end up being unused. Would this cause an overhead?

Any views or comments would be really appreciated. The main functionality and code associated with the page(s) is the common code.
Paul
Top achievements
Rank 1
 answered on 15 Sep 2011
1 answer
36 views
Hi ,
when i add ajaxmanager to my page , i get runtime error , this is my code :



<telerik:RadAjaxManager ID="RadAjaxManagerProxy1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="Button12">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="Panel12" />
            </UpdatedControls>
        </telerik:AjaxSetting>       
    </AjaxSettings>
</telerik:RadAjaxManager>

<asp:Button ID="Button12" runat="server" Text="Button" />
<asp:Panel ID="Panel12" runat="server" Height="95px">
    <asp:Image ID="Image12" runat="server" ImageUrl="/_layouts/images/vistarayan.cps/amessage.png" />
</asp:Panel>

when i delete ajaxmanager everything is fine !
i use telerik 2011.2.712.35 .
what is the problem ?
Radoslav
Telerik team
 answered on 15 Sep 2011
4 answers
311 views
We are using "Telerix Chart" Control in ASP.NET website(.Net 4.0 Framework).

When I host the website on IIS 7.0 in "Integrated Mode" on Windows Server 2008, Telerix Charts gives "404 Resource not found" errror.

This error is not given in "Classic Mode" in IIS 7.0 on Windows Server 2008.

I have tried the following option:-
1) Adding the below section in web.server section

<

httpHandlers>

 <add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>

 </httpHandlers>

 

Can anyone please suggest the Resolution to the problem?
Sonia
Top achievements
Rank 1
 answered on 15 Sep 2011
Narrow your results
Selected tags
Tags
+124 more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
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
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?