Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
90 views
hai,

I need an example for loading the appointments of different users on a single scheduler by simply choosing the name of the user from a drop down list. I attach the model of screenshot below. In Telerik demo custom resources doesn't have this model. pls give that model or url. Can anyone help me.
                                                              Thanks
Veronica
Telerik team
 answered on 14 Sep 2010
2 answers
179 views
Hello,

I am very new to telerik controls. I have to  make a modification to a project (not my implementation) where an ImageEditorDialog is opened in the following way:

                //Telerik File Browser Dialog
                this.DialogOpener1 = new RadDialogOpener();
                this.DialogOpener1.HandlerUrl = "~/Telerik.Web.UI.DialogHandler.axd";
                this.DialogOpener1.Window.Title = Utility.GetLanguageResource("ImagePicker_DisplayName");
/*
                 
                 *  ATTENTION: FileBrowser Dialog doesn't support IE6!!! - The URL isn't stored after selection! 
                 
                 */
  
                //Get the folders to display in the dialog
                SPListCollection listsOfTyp = this.Web.GetListsOfType(SPBaseType.DocumentLibrary);
                listsOfTyp.ListsForCurrentUser = true;
                listsOfTyp.IncludeRootFolder = true;
                ArrayList list = new ArrayList();
                foreach (SPList list2 in listsOfTyp)
                {
                    if (SharepointTelerikCustomProvider.IsNotSystemFolder(list2.RootFolder) && !list2.Hidden)
                    {
                        list.Add(list2.RootFolder.ServerRelativeUrl);
                    }
                }
  
                ImageManagerDialogParameters imdp = new ImageManagerDialogParameters();
  
                imdp.ViewPaths = (string[])list.ToArray(typeof(string));
                imdp.UploadPaths = (string[])list.ToArray(typeof(string));
                imdp.DeletePaths = (string[])list.ToArray(typeof(string));
                imdp.MaxUploadFileSize = 5000000;                
                imdp.FileBrowserContentProviderTypeName = typeof(SharepointTelerikCustomProvider).AssemblyQualifiedName;
                  
                DialogDefinition imageManager = new DialogDefinition(typeof(ImageManagerDialog), imdp);
                imageManager.ClientCallbackFunction = txtUrlNew.ClientID + "ImageManagerFunctionPU";
                imageManager.Width = Unit.Pixel(649);
                imageManager.Height = Unit.Pixel(300);
                  
                DialogOpener1.DialogDefinitions.Add("ImageManager", imageManager);           
                  
                  
  
                FileManagerDialogParameters imdp2 = new FileManagerDialogParameters();
                imdp2.ViewPaths = (string[])list.ToArray(typeof(string));
                imdp2.UploadPaths = (string[])list.ToArray(typeof(string));
                imdp2.DeletePaths = (string[])list.ToArray(typeof(string));
                imdp2.MaxUploadFileSize = 5000000;
                imdp2.FileBrowserContentProviderTypeName = typeof(SharepointTelerikCustomProvider).AssemblyQualifiedName;
                DialogDefinition imageEditor = new DialogDefinition(typeof(ImageEditorDialog), imdp2);
                imageEditor.Width = Unit.Pixel(649);
                imageEditor.Height = Unit.Pixel(300);
                DialogOpener1.DialogDefinitions.Add("ImageEditor", imageEditor);
                this.Controls.Add(DialogOpener1);
  
  
                Button browseButton = new Button();
                browseButton = new Button();
                browseButton.Text = "Browse";
                browseButton.CssClass = "ms-ButtonHeightWidth";
  
  
                //var o = window.document.body.getElementsByClassName('ms-dlgFrameContainer')[0].style;
                browseButton.OnClientClick = "$find('" + DialogOpener1.ClientID + @"').open('ImageManager', {Colors: [], CssClasses: []});return false;";

 

I would like to add a scrollbar to the dialog. The following works not:
 

 

DialogOpener1.Style["overflow"] = "scroll";

  

 

Please help, I know it can not be hard but i can't figure out how to do it.
Thank you.

Anna 

 

 

 

 

 

Anna
Top achievements
Rank 1
 answered on 14 Sep 2010
2 answers
299 views
It used to be that adding this to a page

<style type="text/css"
    .RadGrid_Windows7 .rgCheck 
    
        display: none !important
    
</style>

would hide the checkbox in the header of a grid with a GridClientSelectColumn.

Now, it causes the header of the column to disappear for that column and all the other headers to shift left. See attached.

This broke in the last release or two.
apb
Top achievements
Rank 1
 answered on 14 Sep 2010
1 answer
181 views
We are using ap.net ajax components and trying to get a report like below

ID Col1, Col2,Col3......Col9 ->                 Col9A (field Type memo)
                                                               Col9B(field Type memo)
                                                               ............
                                                               Col9C(field Type memo)
  
            ID-1drilldown,....
            ID-2drilldown,....


Basically the report will have a row with multiple columns, the last column can have several sub rows of type text,memo( so they can be paragraphs) The main row (ID)  has a grouping, so when you expand IDCol1 you get few other rows like ID-1drilldown,ID-2drilldown etc
With regular radgrid export the long memo fields may run into each other, can you please suggest an alternative, or advise onhow we can use crystal reports with asp.net ajax component?
Daniel
Telerik team
 answered on 14 Sep 2010
0 answers
134 views
How to pass value from child window to parent window when the child window is closed ?
Raghavendra
Top achievements
Rank 1
 asked on 14 Sep 2010
1 answer
128 views
Created a slider that has up to 25 slides.  The slider works up to 10 slides changing the slide content accordingly.  But after 10, the remaining slides will not show up.

Is this an issue with the slider settings or with slides itself?

HELP ASAP Please!!!
Svetlina Anati
Telerik team
 answered on 14 Sep 2010
3 answers
119 views
Hi Sir
              I am currently  having an issue with raddock . When raddock is placed in a page  and the page is scrolled the entire page scrolls however raddock is not scrolled and remains fixed . The other controls move normally when the page is scrolled however the raddock control appears fixed and is not moving or scrolling. This problem occurs only in Internet explorer.

Kindly download the attached files which shows the issues.

Thanking you

Kishor Dalwadi.

Pero
Telerik team
 answered on 14 Sep 2010
3 answers
148 views
Hi,

While exporting RadGrid to PDF it exports the datas correctly.But when column is resized and export to PDF some of the columns cannot displayed. How to do this>

Regards,
Venkatesh S
Daniel
Telerik team
 answered on 14 Sep 2010
5 answers
196 views
Hi,

I'd like to show a tooltip while hovering over a RadGrid row. This functionality works well until displaying the tooltip with RadToolTipManager. If I hover over a row, the tooltip appears short. It disappears after a while automatically. The page is ajaxified as well as the UserControls on it. How can I get tooltip stayed on the page?

Regards,
Adi
Svetlina Anati
Telerik team
 answered on 14 Sep 2010
2 answers
151 views
hi,

i get the following xml string if i use the getxml() method:

<?xml version=\"1.0\" encoding=\"utf-16\"?>\r\n<TopologyBrowserControl OnClientNodeExpanding=\"MConNodeExpanding\" OnClientNodeExpanded=\"MConNodeExpanded\" OnClientNodeCollapsing=\"MConNodeCollapsing\" OnClientNodeCollapsed=\"MConNodeCollapsed\" OnClientNodePopulating=\"MConNodePopulating\" OnClientNodePopulationFailed=\"MConPopulationFailed\" DataFieldID=\"Id\" DataFieldParentID=\"ParentID\" DataTextField=\"DisplayText\" DataValueField=\"Id\" CssClass=\"topology\" />

regards,
ingemar
Ingemar
Top achievements
Rank 1
 answered on 14 Sep 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?