Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
49 views
Hi all,

I have telerik controls and i have created the telerik application in my development server which have installed telerik control.
it's working fine in localhost.
But when i deploy this application into other server which have sharepoint 2010, it's not working there.
Problem come due to version problem.

 How can i Deploy the telerik solution on that sharepoint 2010 server  ?

error come as - 

Server Error in '/' Application.   
Could not load file or assembly 'Telerik.Web.Design' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.


Please help us at the earliest.
Thanks.
Sushobhit
Top achievements
Rank 2
 asked on 27 Dec 2012
2 answers
64 views
I have a RadImageEditor and a RadDockLayout populated with RadDockZone and RadDocks on the same page. RadImageEditor and RadDockLayout reside in two different update panels. RadDocks are used to display a list of draggable images, and the RadImageEditor is used to edit a selected image.

My problem is while editing an image, if I open an image editor dialog (ex. Image Crop dialog) and drag it around, the dialog snaps into RadDock positions on the image list. I noticed that internal RadImageEditor dialogs are also RadDocks, but shouldn't they be independent from other RadDock controls that exist on the page? How can I make it so that RadImageEditor dialogs won't interfere with other RadDocks on the page?
Ravin
Top achievements
Rank 1
 answered on 27 Dec 2012
1 answer
122 views
Hi,

im using a columngroup as described here.
It does work fine except that in one case i want to hide the header of the sub-columns so that i have one header for two columns only.

e.g.:
| my column group header|
|  col1 -data1| col 2- data1|
|  col1 -data2| col 2- data2|
|  col1 -data3| col 2- data3|

and so on. Is there some kind of a "hidechildheader" option available on a GridColumnGroup? or something like "hideheader" on the column itself?

regards!
Princy
Top achievements
Rank 2
 answered on 27 Dec 2012
3 answers
104 views
I am using 3 tier programming
So in my Data Access Layer I have the following code
public List<AdvertisementDAL> displayChart()
{
    List<AdvertisementDAL> dal = new List<AdvertisementDAL>();
    string sql = "Select * From AdvertisementRecord";
    SqlConnection conn = new SqlConnection(_connStr);
    SqlCommand cmd = new SqlCommand(sql, conn);
    conn.Open();
    SqlDataReader dr = cmd.ExecuteReader();
    while (dr.Read())
    {
        _recordID = int.Parse(dr["RecordID"].ToString());
        _recordDate = dr["RecordDate"].ToString();
        _noOfClick = int.Parse(dr["NoOfClick"].ToString());
        _noOfView = int.Parse(dr["NoOfView"].ToString());
        _advertisementID = int.Parse(dr["FK_AdvertisementID"].ToString());
        dal.Add(new AdvertisementDAL(_recordID, _recordDate, _noOfClick, _noOfView, _advertisementID));
    }
    conn.Close();
    dr.Close();
    dr.Dispose();
    return dal;
}

In my business Logic Code I have this:
public List<AdvertisementDAL> pieChart()
{
    AdvertisementDAL dal = new AdvertisementDAL();
    List<AdvertisementDAL> dll = new List<AdvertisementDAL>();
    dll = dal.displayChart();
    return dll;
}

In my Presentation Layer I have the following code:
protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
 
        AdvertisementBLL bll = new AdvertisementBLL();
        RadChart1.DataSource = bll.pieChart();
        RadChart1.DataBind();
         
 
    }
}

So here is the real problem start:
I want to display in this way
On my Y Axis Label( look at the attachment)
It will be the record date( 12/21/2012, 12/22/2012, 12/23/2012)
On my X Axis Label(look at the attachment)
It will be 1 to 100 
My series 1 will be NoOfClick
My series 2 will be NoOfView

I tried the following but it said
The type of column with name Record Date is not numeric

 
Evgenia
Telerik team
 answered on 27 Dec 2012
1 answer
49 views
hi,
i'm using fileexplorer and i want to add more columns inside the grid area of the file explorer and fill it with the data i have from database i'm allready using dbcontentprovider class
Thank you,
Vessy
Telerik team
 answered on 27 Dec 2012
1 answer
178 views
Hi,

I had tried following the step in following site:
http://demos.telerik.com/aspnet-ajax/tabstrip/examples/appearance/customcssclasses/defaultcs.aspx
to customize my own Css Class but it didn't quite come up what i want as the Words weren't displayed completely and the tab shown improperly and Hover can't change to yellow (Please see attachment 1 and CSS)
So several questions I like to ask:
1) How can I fixed the CSS class in order to make my tab shown properly.
2.) Larger Tab Size.  I want the first tab would be larger and taller among other tabs within ths same Tabstrip.   Could you show me the CSS how to do this
3.) Apply my own Sprite Guide.  I want to have tab design or shape based on my images, do I have to create sprite image first?  Any alternative way?  I don know How to create a sprite.  Could you show me some tuterials and samples.
3.) Apart from the color, I would like to create my custom Tab (Please see attachment 2) based on my own design images (Please see attachment 3),  Please advise How can I do it and sample css provided would be much appreicated. 

Thanks.
Patrick
Boyan Dimitrov
Telerik team
 answered on 27 Dec 2012
3 answers
80 views
who compare datetime in radgrid itemdatabound? , please help
arzie
Top achievements
Rank 1
 answered on 27 Dec 2012
5 answers
745 views
 my requirement is little different. I have a RadGrid (Auto generated columns) on my web page. I’ve got 4 columns all together (From DB). There is a column called “Doc Name”. As I use Auto generate column feature, I get all columns as GridBoundColumns.  I need to change “Doc Name” Grid Bound Column to link button or hyper link column. (Each and every row has a related .PDF file which need to be opened when user click a cell of that column)


Eg:

Doc Name                           Document Title                     Fields                 

Doc 1                                        Drawing 1                             text                   

Doc 2                                         Drawing 1 of 2                     button

Could you please help me to find how to change GridBoundColumn to GridButtonColumn (Link/Hyperlink) in runtime?

Regards,
Tray

Tray
Top achievements
Rank 1
 answered on 27 Dec 2012
9 answers
286 views
using <SelectedItemStyle BackColor="Red" /> works fine,
using any <SelectedItemStyle BackColor="#rgb" /> leaves the Background painted with selected color after selecting another row, this only happens on Firefox3.

Princy
Top achievements
Rank 2
 answered on 27 Dec 2012
5 answers
313 views
Hi,
I want to add a dropdown and a button in radgrid. The values in the dropdown are static(for example: "male"  and "female").

I want to have the dropdown and button in the inseritemtemplate and edititemtemplate as well . Foe the button how should the aspx.cs be invoked?

How to add and use the dropdown and button in radgrid
Thanks
Shinu
Top achievements
Rank 2
 answered on 27 Dec 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
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
Bronze
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?