Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
161 views

Please,

I need a way to make RadDropDownList ReadOnly. I Do not want to disable it, just disable iteration. (or I could use "disabled back color" or something...)

How Could I do it?

Thanks in advance.

Eyup
Telerik team
 answered on 31 Mar 2016
1 answer
108 views

Hi Team,

I am using RadListBox and attaching 6000 values to it.  When user clicks on select all option of the check box in RadListBox, it takes around 50 sec to check all the items in IE11 and in chrome it takes 4 sec. Can anyone suggest, how to improve the performance of RadListBox?

Regards,

Somnath

Veselin Tsvetanov
Telerik team
 answered on 31 Mar 2016
3 answers
199 views
I'm interested in creating an application that allows a user to click a button, select multiple files, send them to an ftp server. I'm looking at the async upload control as a starting point. Is this possible?

I saw another post on this but the solution contained a dead link.

If not, Is there a another control i can use to simply select a bunch of files on the users machine?



Hristo Valyavicharski
Telerik team
 answered on 31 Mar 2016
1 answer
78 views

hi,

i check if it possible to create asp .net ribbon bar component within HTML page in iframe tag

while i'm trying to create a single page with ribbon component, and call him from another HTML page 

i have a access problem at the HTML page call to the ribbon with (jquery) -> $("#ribbon");

how to get the original object like in the asp page but in the HTML page, with javascript ?

(Pictures attached)

thanks.

 

 

Veselin Tsvetanov
Telerik team
 answered on 31 Mar 2016
3 answers
670 views

I am using Kenod Treelist to display the hierarchical data and its working fine.
I have placed the edit option to update/delete each row.
Now I am facing issue, how to add new row to each level:
My Treelist is having the hierarchy like below:
--Main Node

   -----Parent Node1

             ------Child Node1

             ------Child Node2

  -----Parent Node2
I should be able to add Main node/Parent Node/Child Node.
I have tried with toolbar: ["create"] which will give me the option to add the main node.
Any other way I can achieve this with Kendo Tree List?
Or any other control I can opt to achieve the Add/Edit/Delete functionality with hierarchical node.
Any help is highly appreciable.
Thanks

Nikolay Rusev
Telerik team
 answered on 31 Mar 2016
0 answers
123 views

Hi 

I am trying to use share point's PeopleEditor control in Edit Template in Batch Edit Mode of RadGrid.

RadGrid is not saving the data and  not highlighting the editied cell.

Please provide some sample of using People Editor control in Edit Template in Batch Edit Mode of RadGrid.

 

Thanks

Abhishek

Abhishek
Top achievements
Rank 1
 asked on 31 Mar 2016
6 answers
109 views

We use the Scheduler control with Exchange to list known service outages. We show three different schedulers, all linked to the same provider, to show last week, this week and next week.

We have recently found that scheduler is not showing new appointments, although creating new appointments in scheduler does push them back to Exchange. Deleting old appointments (which is something we don't want to do) allows the requisite number of future appointments to show, so it would appear that:

1.) ExchangeSchedulerProvider is always retrieving appointments from the beginning of time

2.) There is a limit to the number of appointments retrieved that is too low for our requirements.

So my questions are:

1.) Can I set the provider to only retrieve appointments from a certain date?

2.) If not, can I increase the number of appointments retrieved (far from ideal).

Thanks.

jwhitley
Top achievements
Rank 1
 answered on 31 Mar 2016
6 answers
369 views

I am facing a problem regarding RadAjaxLoadingPanel.

I am saving records to one table in sql server database. First few seconds, RadAjaxLoadingPanel works fine but after 90 seconds(Approx) it goes off and does not show any progress while data in saving in table.

Can you tell whether is there any way to make it visible all the times till the query finishes. My query takes around 5 minutes to complete.

I tried Explicit Hide/Show way also but still i am getting same result.

 

Please advise.

Sumit
Top achievements
Rank 1
 answered on 31 Mar 2016
2 answers
216 views

Hi,

I need to select 1 row in a radgrid ( a parameter is passed in url like myPage.aspx?ID=93 )

If the row to select is in the first page displayed of the radgrid, this is OK.

However, if the row to select is, for example, in the page 5, this don't work

I do so in PreRender:

        protected void Grid_Version_PreRender(object sender, EventArgs e)
        {
            if (!IsPostBack && SelectedRecetteVersion != null)
            {
                foreach (GridDataItem item in Grid_ArticleRecette.MasterTableView.Items)
                {
                    if (item.GetDataKeyValue("RecetteID").ToString() == myID)
                    {
                        item.Selected = true;
                    }
                }
            }

 

I need to display to good page with the row selected

 

Thanks for your help please

 

 

Pierre
Top achievements
Rank 1
 answered on 30 Mar 2016
2 answers
246 views

We have a requirement where user wanted to use the up/down keys to navigate rows while the grid is in edit mode.  I was able to achieve this using the Keydown event of the RadnumericTextBox, but the edited value seems to revert back to the original value when user press the navigation keys.  We are using Batchedit mode so I would like to get to get the red mark on the edited row before it changes the focus to the next row.  Could this be achieved?  Below is the Javascript I'm calling in the Keydown event of RadnumericTextBox.


function OnKeyDown(sender, args) {
    var key = args.keyCode;
    var grid = $find("<%=grid.ClientID%>");
    var data = grid.get_batchEditingManager().get_currentlyEditedCell();
    var tableView = grid.get_masterTableView();
  
    if (key == 38) { //Up Key
        var row = grid.get_batchEditingManager().get_currentlyEditedRow();
        if (row.previousSibling) {
            grid.get_batchEditingManager().openRowForEdit(row.previousSibling);
        }
    }
    else if (key == 40) { //Down key
        var row = grid.get_batchEditingManager().get_currentlyEditedRow();
        if (row.nextSibling) {
            grid.get_batchEditingManager().openRowForEdit(row.nextSibling);
        }
    }
}
Phillip
Top achievements
Rank 1
 answered on 30 Mar 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?