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.

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
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.
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
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
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.
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.
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
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); } }}