Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
96 views
Hello,

In my project, i have added multiple RadWindowManager in one aspx page and the issue is, Sometimes a different RadWindow is opened apart from the expected one. How to rectify this issue?

Thanks in advance,
Ivy.
Ivy
Top achievements
Rank 1
 answered on 15 Feb 2013
1 answer
94 views
Hi;
Please I need your help to lead me, I start to work with "RadScheduler Control"  but I need to synchronize information between the MS-Outlook and my RadScheduler, so how I can do that, I need your advice.
Thanks
Plamen
Telerik team
 answered on 15 Feb 2013
3 answers
75 views
Have a project that I am working on where I must provide the end-user with the ability to perform a custom search on the data and each user may require different information to be returned.  Currently having the data (2 columns) being dumped into a Telerik datagrid and going to utilize the grid filter to allow them to filter the data even more. 

However I would like suggestions on which Telerik AJAX control might be best to fit my scenerio.  Currently there are 8 major categories and under that could be any number of sub groups (40 in total spread across the 8 categories) and any number of fields (628 in total).  The user is to select what fields they would like displayed in the datagrid. 

Have thought about using a TreeList and don't believe it to be difficult to populate the tree based upon our database records.  But I would then need to take the fields they selected and add them to the query which would populate the datagrid.  Is that possible? 

Or is there a better control for displaying those 628 fields in a much more user-friendly manner. 

Suggestions are welcome.
Boyan Dimitrov
Telerik team
 answered on 15 Feb 2013
2 answers
170 views
Hi,

I am populating the RadAutoCompleteBox drop-down dynamically that returns a huge amount of items. This seems too large to fit on the screen. So I would like to limit the size of drop-down like adding a scrollbar to the list.

Please help,
Anly.
Anly
Top achievements
Rank 1
 answered on 15 Feb 2013
3 answers
105 views
We have this old project that uses the RadScheduler from Q2 2010.

We want to upgrade to the latest version (Q3 2012) to get the recurring calendar feature.

We have gone through the process of upgrading the Visual Studio project to use the latest version of RadControls.

Now, what code do we have to add/modify to make the recurring calendar feature show up?

Plamen
Telerik team
 answered on 15 Feb 2013
2 answers
85 views
ok I have a RadGrid where I have manual created the columns for it and i have a auto generated popup edit/ insert form. one of the field i want to edit is a date and i would like the edit form to have a calender date picker and another is a Yes/No option only so i would like it to be a dropdown instead of just a plan textboxes is there a way to set this without creating a manual edit form.
Rodney
Top achievements
Rank 1
 answered on 15 Feb 2013
6 answers
146 views

In the example shown for batch update in the below link, I used NeedDataSource event handler to bind the data to the grid and ItemDataBound to bind the DropDownLists.  But I dont see the DropDownList getting populated may be due to the dropdownlist's style property Style="display: none".    And the function HideEditor never gets executed becuase the variable 'colName' is null. Do I have to use SqlDataSource only to get this working?

 

 

 

 

 http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/clienteditbatchupdates/defaultvb.aspx

Appreciate your help!!
Neelima

function UpdateValues(grid) {
                //determine the name of the column to which the edited cell belongs
                var tHeadElement = grid.get_element().getElementsByTagName("thead")[0];
                var headerRow = tHeadElement.getElementsByTagName("tr")[0];
                var colName = grid.get_masterTableView().getColumnUniqueNameByCellIndex(headerRow, editedCell.cellIndex);
  
                //based on the column name, extract the value from the editor, update the text of the label and switch its visibility with that of the column
                //column. The update happens only when the column editor value is different than the non-editable value. We also set dashed border to indicate
                //that the value in the cell is changed. The logic is isolated in the HideEditor js method
                switch (colName) {
                    case "Start_Dt":
                        HideEditor(editedCell, "textbox");
                        break;
                    case "PickupAddr1":
                        HideEditor(editedCell, "textbox");
                        break;
                    case "TypeOfFare":
                        HideEditor(editedCell, "textbox");
                        break;
  
                    default:
                        break;
                }
            }

function HideEditor(editCell, editorType) {
                //get reference to the label in the edited cell
                var lbl = editCell.getElementsByTagName("span")[0];
  
                switch (editorType) {
                    case "textbox":
                        var txtBox = editCell.getElementsByTagName("input")[0];
                        if (lbl.innerHTML != txtBox.value) {
                            lbl.innerHTML = txtBox.value;
                            editCell.style.border = "1px dashed";
  
                            StoreEditedItemId(editCell);
                        }
                        txtBox.style.display = "none";
                        break;
                    case "checkbox":
                        var chkBox = editCell.getElementsByTagName("input")[0];
                        if (lbl.innerHTML.toLowerCase() != chkBox.checked.toString()) {
                            lbl.innerHTML = chkBox.checked;
                            editedCell.style.border = "1px dashed";
  
                            StoreEditedItemId(editCell);
                        }
                        chkBox.style.display = "none";
                        editCell.getElementsByTagName("span")[1].style.display = "none";
                        break;
                    case "dropdown":
                        var ddl = editCell.getElementsByTagName("select")[0];
                        var selectedValue = ddl.options[ddl.selectedIndex].value;
                        if (lbl.innerHTML != selectedValue) {
                            lbl.innerHTML = selectedValue;
                            editCell.style.border = "1px dashed";
  
                            StoreEditedItemId(editCell);
                        }
                        //if the form decorator was enabled, hide the decorated dropdown instead of the original.
                        if (ddl.className == "rfdRealInput") ddl = Telerik.Web.UI.RadFormDecorator.getDecoratedElement(ddl);
                        ddl.style.display = "none";
                    default:
                        break;
                }
                lbl.style.display = "inline";
            }
Vasil
Telerik team
 answered on 15 Feb 2013
1 answer
137 views
I am having some issue with the IsSelectable field on a day. I am setting e.Day.IsSelected = false in the DayRender server event handler but then when a date is selected using the client side DateSelecting event, it always says true, even in the most simple example.  I found this thread from 1/2009 where a Telerik representative said the issue had been elevated and would be corrected quickly.  Am I doing something wrong, or is this still an issue with the Calendar?  Is there a workaround available?

C#:
protected void RadCalendar1_DayRender(object sender, Telerik.Web.UI.Calendar.DayRenderEventArgs e)
{
        e.Day.IsSelectable = false;
}

Javascript:
function Calendar_OnDateSelecting(sender, args) {
    args.set_cancel(true);
    alert(args.get_renderDay().get_isSelectable());
}

Eyup
Telerik team
 answered on 15 Feb 2013
0 answers
79 views
Using telerik  Q3 version (2012_3_1308,ddl from bin 35) in IE 9 , and using meta tag <meta http-equiv="X-UA-Compatible" content="IE=7" /> show blank rad grid
Kanchan
Top achievements
Rank 1
 asked on 15 Feb 2013
2 answers
117 views
I am using the Telerik file explorer to display a list of files users have on the Rackspace Cloud server. The explorer works fine - users can rename, delete and upload files successfully. But I can't figure out how to allow users to download the files on their local machine from the Rackspace server using the Telerik file explorer.

I will greatly appreciate it if someone can point me to right direction on how to do this.
Harold
Top achievements
Rank 1
 answered on 15 Feb 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?