Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
171 views
Hello,

With asp.net 4 and version 2010.3.1317.
It seems that CDN usage disable any css combine feature ? Dommage because my header is full of links (and my personnal head is tired with all this).

So what is the best to do: use CDN and get many file to lad or using a single file whitout CDN but with combining ?

Moreover I must tell that thye help file is very poor on this and we must spend hours on forums to get some idea of real feature....


Thanks
CS
Kate
Telerik team
 answered on 07 Dec 2012
6 answers
201 views
I am stucked at 1 point in the radscheduler.

I need to find out value of a control from InlineEditTemplate on the OnAppointmentUpdate event.

protected void RadScheduler1_AppointmentUpdate(object sender, ApponitmentUpdateEventArgs e )
{

}

in my InLineEditTemplate there is a radiobuttonlist control, i am not able to get the value selected in the radio button list.

Thanks in Advance
Plamen
Telerik team
 answered on 07 Dec 2012
1 answer
243 views

I have a radtextbox that I am updating the text with JavaScript (clientside). The new value shows on the page but if I access the control server side, it shows the old value. This control is not being reloaded server side.

JavaScript: this will set the new value which shows up on the web page

document.Form1.txtTotalCharge_text.value = document.Form1.txtHdTotalCharge.value

If I access txtTotalCharge.text on the server side, the old value shows up. The asp:textbox doesn't have this issue. Can anyone tell me how to fix this.

Milena
Telerik team
 answered on 07 Dec 2012
5 answers
272 views
Hello,

  On my webpage, I am using RadAsyncUpload and i'd like to have a description for each image the user upload. For that i need a textbox and the user can upload as many images as they want. What would be the best way to achieve this?

Appreciate the help
Thanks
Plamen
Telerik team
 answered on 07 Dec 2012
1 answer
81 views
I have a grid, and I want to export it to pdf and attach the file to an e-mail.

It seems like after calling ExportToPdf() the file is always opened. Is it possible to just save the pdf without opening it first?


Regards, Jill-Connie Lorentsen
Daniel
Telerik team
 answered on 07 Dec 2012
9 answers
231 views
Hello

I need to sub class the RadComboBox, and i want the good syntax to override the SelectedValue,

Cause i my value isn't find on the list , i want to get the error.

public override string SelectedValue
    {
        get { return _SelectedValue; }
        set { _SelectedValue = value; }
         
    }

thanks
Olivier,
Cat Cheshire
Top achievements
Rank 1
 answered on 07 Dec 2012
4 answers
153 views
I have used telerik rad grid client-side programmatic binding. Every thing working fine but when we export data to pdf, it is asking password. How to open this pdf?

Radgrid.AutoGenerateColumns = true;
       Radgrid.MasterTableView.AllowPaging = true;
       Radgrid.MasterTableView.IsItemInserted = true;
       Radgrid.ExportSettings.OpenInNewWindow = true;
       Radgrid.AllowFilteringByColumn = false;
       Radgrid.ExportSettings.ExportOnlyData = true;
       Radgrid.ExportSettings.HideStructureColumns = true;
       Radgrid.MasterTableView.HierarchyDefaultExpanded = false;
       Radgrid.MasterTableView.NestedViewTemplate = null;
       Radgrid.MasterTableView.HierarchyDefaultExpanded = false;
       Radgrid.MasterTableView.ClearChildEditItems();
       Radgrid.ExportSettings.FileName = filename;
       Radgrid.ExportSettings.Excel.Format = GridExcelExportFormat.Html;
       Radgrid.MasterTableView.ExportToPdf();
        

Thanks in advance.
Daniel
Telerik team
 answered on 07 Dec 2012
1 answer
53 views
Hi

I have a page with a list of categories, represented as a RadGrid (called CategoryRadGrid).
To the right of this list I have another RadGrid (called CategoryDetailRadGrid) which basically shows detailed information about a row in the first grid.


So when you click on a row in CategoryRadGrid (containing a subset of info about a category), every detail about this category is shown in CategoryDetailRadGrid.

CategoryDetailRadGrid has the column headers from CategoryRadGrid as rows with corresponding values for the category (hiding it's header of course).

Binding is done client-side.

What I want to do is this:
I want to be able to drag a row from CategoryDetailRadGrid to CategoryRadGrid (preferrably to the header section, containing column names) as to indicate that I want to extend CategoryRadGrid with a new column.
And I want to do this vice versa, i.e. drag a column from CategoryRadGrid to CategoryDetailRadGrid to remove it from CategoryRadGrid.

So far I've only managed to intercept the client event, OnRowDropped, when I drag a row from CategoryDetailRadGrid to the rows in CategoryRadGrid (which I as mentioned would like to be able to drag to the header part instead),

Any suggestions?

Regards

Christian
Maria Ilieva
Telerik team
 answered on 07 Dec 2012
1 answer
104 views
Hi ,

I have report page with rad controls,  the rad combo box has a compare validator . There is a clear button. If you do not select any thing in the combo box, the compare validator throws an error message but on clicking of clear button h message does not get cleared, it is clearing only after the second click on clear button. I have tried giving auto post back true for clear button but it did not cause any difference. Also if i remove the validator then all other messages get cleared on the very first click.

Please Help. Thanks in Advance
Cat Cheshire
Top achievements
Rank 1
 answered on 07 Dec 2012
9 answers
171 views
How can I set the current page index on client side.  I have used all of the below and none of them seem to change the index.

ClientEvents-OnDataBound

 

ClientEvents-OnDataBinding
ClientEvents-OnGridCreated
ClientEvents-OnGridCreating
ClientEvents-OnMasterTableViewCreated
ClientEvents-OnMasterTableViewCreating

 

 

 

Also, here is my code below:

function
rgSchoolMonitor_OnDataBinding()

 

{

 

var grid = $find("<%=rgSchoolMonitor.ClientID %>");

 

 

var masterTableView = grid.get_masterTableView();

 

 

 

var pageCount = masterTableView.get_pageCount();

 

 

if (pageCount > 1)

 

{

 

//Need to Iterate Through Pages

 

 

var pageIndex = masterTableView.get_currentPageIndex();

 

 

 

if ((pageIndex + 1) > (pageCount - 1))

 

{

masterTableView.set_currentPageIndex(0);

}

 

else

 

{

masterTableView.set_currentPageIndex((pageIndex + 1));

}

 

 

}

 

}


Thanks,
Nick
Eyup
Telerik team
 answered on 07 Dec 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?