Telerik Forums
Community Forums Forum
2 answers
118 views
Something that has bugged me since I started using Telerik controls a year or so ago is the email notifications of forum threads. They are horrible. The formatting is impossible to decipher, they include escaped HTML characters (such as  ) and are overall hard to use. I am using Google Chrome by the way.

What strikes me as odd about this is that everything else from Telerik I see has a sleek and well crafted UI. This is such a glaring exception. Couldn't these emails be cleaned up considerably with a little html?

Am I the only one that see's this?
seetha
Top achievements
Rank 1
 answered on 08 Jul 2010
0 answers
109 views
We are migrating a MS Access application for a small business customer.  Clients, inventory, invoices, purchase orders...etc

We want to build a rich web application around the data.  This application will not look or feel like a web page.  There will be no page reloads as it loads data.  The user will not pass from screen to screen like a web page.  It will be much more like an application.

The Telerik controls seem well suited to develop this sort of application.  We are looking for someone to help with the construction of the UI and it's framework in .NET and to work closely with the other developers to help build the screens. 

The business is located in Philadelphia, PA, USA.  Local talent will be given a priority.  Professional individuals only.

Please contact me: mg14399@grant.org

Michael
Top achievements
Rank 1
 asked on 07 Jul 2010
1 answer
164 views
WPF + Telerik RadControls were used in creating this information display for a building at James Cook University, Townsville Australia.

http://bit.ly/a7En4v
Emilia
Telerik team
 answered on 06 Jul 2010
0 answers
93 views
Are you a top noch programmer?  Do you know Telerik controls and Sitefinity by the back of your hand?  Are you available for some contract work, up to 40+ hours a week?

I'm looking for an expert in ASP.NET Web development with heavy understanding of the full suite of Telerik RAD AJAX controls.  Please send me an email at ataylor@maxfurniture.com if you are interested.
Andrew Taylor
Top achievements
Rank 1
 asked on 05 Jul 2010
0 answers
189 views

Hi,
    The following code does not work properly.Contents are displayed in first page only.Second page is appeared as blank page.Heading alignments are wrong.What is wrong with the following code?



System.Web.

HttpResponse response = System.Web.HttpContext.Current.Response;

 

response.Clear();

response.AddHeader(

"Content-Type", "binary/octet-stream");

 

response.AddHeader(

"Content-Disposition",

 

 

"attachment; filename=file1.pdf; size=" + pdfBytes.Length.ToString());

 

response.Flush();

response.BinaryWrite(pdfBytes);

response.Flush();

response.End();

Dayana Maliyakal
Top achievements
Rank 1
 asked on 29 Jun 2010
0 answers
119 views
i have taken one radgrid with in this i put one text box.. and
here my requirement is  first i have to bind the grid and then i ll  enter the data into text box . that will be stored in database  for that i want exaple
Praveen
Top achievements
Rank 1
 asked on 25 Jun 2010
1 answer
110 views
This capability is outstanding--could a feature be added (or perhaps I overlooked it) to provide a base color and have it applied to ALL of the selected control sets?  Currently, I have to apply to color to each and every set of controls.

v/r
BK
Alex Gyoshev
Telerik team
 answered on 21 Jun 2010
1 answer
177 views
Hi,

I would know if you use an open source project for the Webserver in StartExamples.exe or if you develop a specific program?

So for one of my project i need to have a embedded Webserver like StartExamples.exe.

Thanks.
Andrey
Telerik team
 answered on 16 Jun 2010
4 answers
243 views

Hello!

My team wants to use Telerik components in a new project.

I would like to know if Telerik components are compliant with the XHTML 1.1 requirement and the W3C Web Accessibility Guidelines.

Any feedback would be greatly appreciated.

Thanks.

Sebastian
Telerik team
 answered on 16 Jun 2010
2 answers
500 views

Issue with RADGrid control:

We are using an RAD Grid which populates data from a webservice. We have paging enabled on this grid and use the by default pager whichcomes with a “Page Size” drop down, giving us option to choose desired pagesize. To avoid page reload every time we click the page number to view the rowson other page, we use RAD AJAX Manager. This Grid has ”Export to PDF” and“Export to Excel “ Buttons also.

We finally deploy this page on a Share Point WebApplication. In SharePoint, once we click on any export button, all othercontrols are disabled which gets enabled only after refreshing the page.  We have found a solution for this as depictedhere:

http://andreasglaser.net/post/2009/08/04/SharePoint-2007-Ajax-and-onsubmit3dreturn-_spFormOnSubmitWrapper()3b.aspxand http://www.bewise.fr/article/PTC/57/WSS-V3-Use-ASP-NET-AJAX-Framework-with-WSS-30.aspx

This helped us to get rid of that issue.

Presently our RAD Grid is working fine, but we are  facing issues with “Page Size” controls.Which works only for the first time. After that it does not allow me to selectany value from “Page Size” combo box. It just gets disabled.

However everything works fine with asp.net standalone application but the issue is after deploying to sharepoint.

this is the code snippet i am refferingto:

<telerik:RadAjaxManagerID="RadAjaxManager1" runat="server">

<AjaxSettings>

<telerik:AjaxSetting AjaxControlID="RadGrid2">

                        <UpdatedControls>

<telerik:AjaxUpdatedControl ControlID="RadGrid2" />

</UpdatedControls>

</telerik:AjaxSetting>

</AjaxSettings>

            </telerik:RadAjaxManager>

           

<telerik:RadGrid ID="RadGrid2"runat="server" AllowPaging="True"

AllowSorting="True" DataSourceID="ObjectDataSource1"GridLines="None"

onneeddatasource="RadGrid2_NeedDataSource"Visible="False"  >

<HeaderContextMenuEnableAutoScroll="True"></HeaderContextMenu>

<MasterTableViewAutoGenerateColumns="False" CellSpacing="-1"

DataSourceID="ObjectDataSource1">

<RowIndicatorColumn>

<HeaderStyleWidth="20px"></HeaderStyle>

</RowIndicatorColumn>

<ExpandCollapseColumn>

<HeaderStyleWidth="20px"></HeaderStyle>

</ExpandCollapseColumn>

<Columns>

<telerik:GridBoundColumn DataField="ID"HeaderText="ID"

SortExpression="ID" UniqueName="ID"DataType="System.Int32">

</telerik:GridBoundColumn>

<telerik:GridBoundColumn DataField="ContactName"HeaderText="ContactName"

SortExpression="ContactName"UniqueName="ContactName">

</telerik:GridBoundColumn>

<telerik:GridBoundColumn DataField="Company" HeaderText="Company"

SortExpression="Company" UniqueName="Company"DataType="System.Int32">

</telerik:GridBoundColumn>

<telerik:GridBoundColumn DataField="Phone"HeaderText="Phone"

SortExpression="Phone" UniqueName="Phone">

</telerik:GridBoundColumn>

<telerik:GridBoundColumn DataField="Email"HeaderText="Email"

SortExpression="Email" UniqueName="Email">

</telerik:GridBoundColumn>

<telerik:GridBoundColumn DataField="Type" HeaderText="Type"

SortExpression="Type" UniqueName="Type">

</telerik:GridBoundColumn>

<telerik:GridBoundColumn DataField="Esc"HeaderText="Esc"

SortExpression="Esc" UniqueName="Esc">

</telerik:GridBoundColumn>

        <telerik:GridBoundColumnDataField="Zip" HeaderText="Zip"SortExpression="Zip"

UniqueName="Zip">

</telerik:GridBoundColumn>

</Columns>

  

</MasterTableView>

<ExportSettings>

<Pdf FontType="Subset"PaperSize="A4" />

</ExportSettings>

</telerik:RadGrid>

<asp:Button ID="Button1"runat="server" onclick="Button1_Click"

Text="Export To PDF" Height="32px"Width="141px"

style="margin-right: 0px" Visible="False" />

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<asp:Button ID="Button2"runat="server" onclick="Button2_Click"

Text="Export To Excel" Height="32px"Width="141px" Visible="False"  />

Mansi Deshpande
Top achievements
Rank 1
 answered on 02 Jun 2010
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?