Telerik Forums
Community Forums Forum
0 answers
95 views
Hi,

I am a programmer working from Boston, MA and I have worked with Telerik's products since 2007. Here are some areas where I excel:

  • Using RadAjaxManager to update parts of a page
  • Binding data to RadGrid and other databound tools
  • Enabling features from product demos for ASP.NET AJAX and Silverlight tools
  • Sitefinity development
  • Styling of the controls
  • Windows Phone 7 Development (I have over 10 apps on the marketplace)
  • Mentoring other developers while performing programming tasks
  • All work is done by me with no outsourcing
  • Available for contracts and sub-contracts
  • Available on demand
  • I was formerly employed by Telerik

For more information and to see my work, please visit my website:

http://www.jmawebtechnologies.com/

Joseph Anderson
President, JMA Web Technologies
781 330 0737
info@jmawebtechnologies.com
Joseph
Top achievements
Rank 1
 asked on 19 Feb 2011
0 answers
117 views
Good Evening,

Looking for an experienced Telerik ASP.Net AJAX programmer to help with current project.

Skill Set:

RadWindow
AJAX Manager/Proxy
RADGrid.

Most of the programming is already done. We just really need help with the Web UI and wiring up the Telerik controls. All the data feeds are in place.

Good pay and work remote.

brennan@plasmawebservices.com

Thanks,
Brennan



Brennan
Top achievements
Rank 1
 asked on 16 Feb 2011
0 answers
112 views

Description

This position will be responsible for developing new software.  This system allows our client to manage and deliver calibration releases to their customers.  The candidate will be responsible for developing the following types of software for the system:

  1. WCF REST based web services that will be consumed by other websites, customers, and manufacturing equipment.
  2. Developing jobs that will be run by a custom developed scheduler built off of the Quartz scheduling server.
  3. Developing reports via Telerik Reports (or other chosen package) based on business needs.
  4. Assisting the team in fixing defects found in the ASP.NET web application and other areas.

Skills Needed

  1. C# ASP.NET Experience
  2. Web Service Experience – Preferably WCF and/or REST
  3. Strong SQL Experience
  4. XML Translation and Validation via XSLT, XPATH, XSD (Not Required)
  5. Strong object oriented skills

Experience

2-6 years of industry experience in C# and SQL
This is a 3-6 month contract opportunity.  Preference given to LOCAL candidates.

Send resumes to holly@profsearchgroup.com

Holly
Top achievements
Rank 1
 asked on 02 Feb 2011
1 answer
121 views

Hello,

I would like to ask how I can deal with validity of sites. Because when I need to use the Telerik component, the page is always invalid. In particular, therefore, we take into account the large number of CSS styles in the page and javascripts too. Can this be somehow treated?

Thank you.

Kiara
Top achievements
Rank 1
 answered on 01 Feb 2011
0 answers
93 views
Hi

In my application i'm using RadTabStrip and it has five .ascx control.
In all the .ascx control user will fill his/her data.when user will login first time
then all the tab are in disable mode. now i want if user fill more then one page
and save then signout.again when ever he login then all the tab(where user has fill data)
should be in active mode.Plz help me.Here is code of my application.

----------------------------------------------------
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" Title="RegistrationForm" %>

<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

<%--<%@ Register src="Preview.ascx" tagname="Preview" tagprefix="uc1" %>
--%>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <div class="exampleWrapper">
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
            <telerik:RadAjaxLoadingPanel runat="server" ID="LoadingPanel1" IsSticky="true">
            </telerik:RadAjaxLoadingPanel>       
           
            <telerik:RadAjaxPanel runat="server" ID="RadAjaxPanel1" LoadingPanelID="LoadingPanel1">
                <div style="float:left; width:500px">
                    <telerik:RadTabStrip ID="RadTabStrip1" SelectedIndex="0" runat="server" MultiPageID="RadMultiPage1" CssClass="tabStrip">
                    </telerik:RadTabStrip>
                    <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0" OnPageViewCreated="RadMultiPage1_PageViewCreated" CssClass="multiPage">
                    </telerik:RadMultiPage>
                </div>
                <%--<div class="previewWrapper">
                    <uc1:Preview ID="previewControl" runat="server" />
                </div>--%>
            </telerik:RadAjaxPanel>
        </div>
</asp:Content>


---------------------------------------------------------------------------CS------------------------------------------------------------------------------------

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Telerik.Web.UI;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            AddTab("Personal Info", true);


            RadPageView pageView = new RadPageView();
            pageView.ID = "PersonalInfo";
            RadMultiPage1.PageViews.Add(pageView);


            AddTab("Academic Details", false);
            AddTab("Family Details", false);
            AddTab("Exprience", false);
            AddTab("Location Preference", false);

        }
    }
    private void AddTab(string tabName, bool enabled)
    {
        RadTab tab = new RadTab(tabName);
        tab.Enabled = enabled;
        RadTabStrip1.Tabs.Add(tab);
    }

    protected void RadMultiPage1_PageViewCreated(object sender, RadMultiPageEventArgs e)
    {
        Control pageViewContents = LoadControl(e.PageView.ID + ".ascx");
        pageViewContents.ID = e.PageView.ID + "userControl";

        e.PageView.Controls.Add(pageViewContents);
    }
}

---------------------------------And all the ascx control----------------------------------------------------------------------------------
  private void GoToNextTab()
    {
        ContentPlaceHolder placeHolder = (ContentPlaceHolder)Page.Master.FindControl("ContentPlaceHolder1");
        RadTabStrip tabStrip = (RadTabStrip)placeHolder.FindControl("RadTabStrip1");
        RadTab AcademicDetailsTab = tabStrip.FindTabByText("Academic Details");
        AcademicDetailsTab.Enabled = true;
        AcademicDetailsTab.Selected = true;

        GoToNextPageView();
    }

    private void GoToNextPageView()
    {
        ContentPlaceHolder placeHolder = (ContentPlaceHolder)Page.Master.FindControl("ContentPlaceHolder1");
        RadMultiPage multiPage = (RadMultiPage)placeHolder.FindControl("RadMultiPage1");
        RadPageView AcademicDetailsPageView = multiPage.FindPageViewByID("Academic Details");
        if (AcademicDetailsPageView == null)
        {
            AcademicDetailsPageView = new RadPageView();
            AcademicDetailsPageView.ID = "AcademicDetails";
            multiPage.PageViews.Add(AcademicDetailsPageView);
        }
        AcademicDetailsPageView.Selected = true;
    }


Help me..........................
Prabhanjan
Top achievements
Rank 1
 asked on 28 Jan 2011
1 answer
100 views
Hi,

I wanted to access my session data in the link  manager of RadEditor. Is this supported? If not how can I create dynamic views for link manager. My requirement is I want to create different controls on the linkmanager depending on my template.

Thanks in advance.
Rumen
Telerik team
 answered on 26 Jan 2011
0 answers
98 views
There are list of all images of the Themes "default".
Daniela
Top achievements
Rank 1
 asked on 20 Jan 2011
1 answer
59 views
HI
In My RadGrid there is 3 listbox where user can select multiple option and then he can update his/her data.I have done dropdown with single selection but not listbox with multiple option. I need ur help.Please Help me. Asp.net3.5.also how can i fetch data from table in inside radgrid ListBox.
Tsvetina
Telerik team
 answered on 20 Jan 2011
3 answers
95 views
In VS2010, I received popup telling me I could update my asp.net version to the latest build.  Great.  I logged-in and followed the process to download the update.
...Where did it go?
The downloader, upon download completion, did not commence an update script.
The downloader did not tell me the name of the file. (I can't search for it if I don't know the name.)
The downloader did not tell me which folder it put the update into.
Unfortunately the download was a waste of time and resources because I will probably never use it (because I can't find it).
If I missed any of the above, I apologize, but then I'd submit for consideration that the messaging is insufficient for someone to notice.  (Or, I need more caffeine to pay better attention :)
I will now proceed with the manual download/update process.
Thank you for your continual efforts and the noticeable improvement in your product and DOCUMENTATION quality this year.

Biliana Ficheva
Telerik team
 answered on 20 Jan 2011
2 answers
92 views
[You need a "report website bugs here" forum.  If there's a better place than this forum, let me know.]

I'm getting a server error when I try to go to: http://www.telerik.com/server-error.aspx?aspxerrorpath=/support/kb/reporting/general/saving-a-report-into-pdf-format-programmatically.aspx
Ed McCarroll
Top achievements
Rank 1
 answered on 17 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?