Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
58 views
I have a page where I am using asp:MultiViewand in one of included pages I am using radDatePicker, but the radDatePicker won't work. I even put a radDatePicker in the page by itself and the popup doesn't work. Does asp:MultiView not work with this control?
Ronen Divon
Top achievements
Rank 1
 answered on 09 Oct 2008
2 answers
105 views
hi,

I want to not allow any change about appointment details but to be able to drag&drop an appointment to an other day.

look like AllowEdit block both, how could I only disable edit detail?

thank
guillaume
Top achievements
Rank 1
 answered on 09 Oct 2008
3 answers
180 views
i'm sure this is somewhere, but i have not been able to find exactly what i'm trying to accomplish in your forums.

i have a detail table within my grid. if i want to hide the expand/collapse on the master record if there are no records in the detail table, how do i accomplish that?

thanks,
susan
Susan
Top achievements
Rank 1
 answered on 09 Oct 2008
4 answers
107 views
Hi

I have two ToolTipManagers on a page, lets call them "A" and "B".

When I open a ToolTip from "A", having the manual close property set to True, it still closes automatic when I open a ToolTip from "B", really strange, as each manager have their own "div" area when I inspect the HTML code.

If this is the expected behaviour, I would suggest the possibility to have more than one manager on a page that can interact total independent of the other managers on that page. This just gives much more flexibility.

Best Regards
Thomas Kristensen
Thomas Kristensen
Top achievements
Rank 1
 answered on 09 Oct 2008
1 answer
293 views

 

if i load one or two controls then is is not bad but my controls have comboboxes and everytime a postback happens the all the controls are loaded again. if i have 6 controls loaded then the performance is very poor. any ideas on how this can be speeded up. Ideally i would only like the control to load when the tabstrip index is changed?

protected
void RadMultiPage1_PageViewCreated1(object sender, RadMultiPageEventArgs e)

 

{

 

string userControlName = string.Empty; // "~/monarch/ControlPages/" + e.PageView.ID + ".ascx";

 

 

if (e.PageView.ID == "Customer")

 

{

userControlName =

"~/monarch/ControlPages/SingleEntryView.ascx";

 

}

 

else

 

{

userControlName =

"~/monarch/ControlPages/SingleMeasureView.ascx";

 

}

 

if (userControlName.Length > 0)

 

{

 

Control userControl = Page.LoadControl(userControlName);

 

userControl.ID = e.PageView.ID +

"_UserControl";

 

e.PageView.Controls.Add(userControl);

}

}

Serrin
Top achievements
Rank 1
 answered on 09 Oct 2008
1 answer
154 views
Question: Why image upload doesn't work? I press it and nothing happens?

aspx

<telerik:RadEditor ID="RadEditor1" runat="server" Skin="Telerik" OnDataBinding="BindTextEditor">
                        <Tools>
                            <telerik:EditorToolGroup Tag="FileManagers">
                                <telerik:EditorTool Name="ImageManager" />
                                <telerik:EditorTool Name="FlashManager" />
                                <telerik:EditorTool Name="MediaManager" />
                                <telerik:EditorTool Name="DocumentManager" />
                                <telerik:EditorTool Name="TemplateManager" />
                            </telerik:EditorToolGroup>
                            <telerik:EditorToolGroup>
                                <telerik:EditorTool Name="Bold" />
                                <telerik:EditorTool Name="Italic" />
                                <telerik:EditorTool Name="Underline" />
                                <telerik:EditorSeparator />
                                <telerik:EditorTool Name="ForeColor" />
                                <telerik:EditorTool Name="BackColor" />
                                <telerik:EditorSeparator />
                                <telerik:EditorTool Name="FontName" />
                                <telerik:EditorTool Name="RealFontSize" />
                            </telerik:EditorToolGroup>
                        </Tools>
                    </telerik:RadEditor>

c#
this is called when i do
if (!IsPostBack)
            {
                GeneratePath();
            }

private void GeneratePath()
        {
            string GenericRootFolder = "~/Repository";
            string TempStoreFolder = "/TempItems";
            string ItemStoreFolder;
            
            if (ViewState["tempimagespath"]==null)
            {
                Guid itemtemp = Guid.NewGuid();
                TempImages tempimagespaths = new TempImages();
                tempimagespaths.Folderid = itemtemp;
                tempimagespaths.Owner = this.User.Identity.Name;
                tempimagespaths.Created = DateTime.UtcNow;
                tempimagespaths.Folderpath = itemtemp.ToString() + "-" + DateTime.Now.Month.ToString() + "-" + DateTime.Now.Day.ToString() + "-" + DateTime.Now.Year.ToString();
                DataRepository.TempImagesProvider.Insert(tempimagespaths);
                ViewState["tempimagespath"] = tempimagespaths.Folderpath;
                ItemStoreFolder = tempimagespaths.Folderpath;
            }
            ItemStoreFolder = "/" + ViewState["tempimagespath"].ToString();

            string viewpath = GenericRootFolder + TempStoreFolder + ItemStoreFolder + "/Images";
            string documentspath = GenericRootFolder + TempStoreFolder + ItemStoreFolder + "/Documents";
            string flashmediapath = GenericRootFolder + TempStoreFolder + ItemStoreFolder + "/AdobeFlash";
            string mediapath = GenericRootFolder + TempStoreFolder + ItemStoreFolder + "/Media";
            string templatespath = GenericRootFolder + "/Templates";
            //creating folders
            System.IO.Directory.CreateDirectory(Server.MapPath(viewpath));
            System.IO.Directory.CreateDirectory(Server.MapPath(documentspath));
            System.IO.Directory.CreateDirectory(Server.MapPath(flashmediapath));
            System.IO.Directory.CreateDirectory(Server.MapPath(mediapath));

            RadEditor1.ImageManager.EnableImageEditor = true;
            RadEditor1.ImageManager.ViewPaths = new string[] { viewpath };
            RadEditor1.ImageManager.UploadPaths = new string[] { viewpath + "/Upload"};
            RadEditor1.FlashManager.ViewPaths = new string[] { flashmediapath };
            RadEditor1.MediaManager.ViewPaths = new string[] { mediapath };
            RadEditor1.DocumentManager.ViewPaths = new string[] { documentspath };
            RadEditor1.TemplateManager.ViewPaths = new string[] { templatespath };
        }
Serrin
Top achievements
Rank 1
 answered on 09 Oct 2008
4 answers
139 views
We have a RadComboBox and the data is populated in the code-behind C# page. We are unable to select the first option in the dropdown without previously picking any other item. After which, the first item becomes "unlocked". This issue is particularly problematic when there is only option in the dropdown.

Has anyone encountered and fixed this? Many thanks in advance.

P.S. This only happens in IE7. Firefox runs without any issue.

Kenneth Lo
Top achievements
Rank 1
 answered on 09 Oct 2008
1 answer
181 views
Hi

I am using the tree's drag and drop. However, the 'drop' can occur on top of an ActiveX control. The tree view does not fire an onNodeDropping event. Instead, I capture the activeX mouseUp event and handle the drop functionality. However, because the tree control is not aware of the drop event, the tree still thinks it's dragging. This means it still shows the text of the draggging object from the tree when I do not want it to.

Is there a way within my function to cancel the drag/drop operation. I imagine I need to somehow get to the tree control and call a cancel drag/drop function.

Maybe code looking similar to this:-
function myMouseUp()  
{  
    cancelTelerikDragDrop();  
}  
 
function cancelTelerikDragDrop()  
{  
    var tree = $find("<%= RadTreeView1.ClientID %>");  
    tree.CancelDragDropOperation(); ????????  
}  
 



Thanks,
Martin
Dimitar Milushev
Telerik team
 answered on 09 Oct 2008
5 answers
346 views
Hi

I'm using the RadDatePicker with custom CSS applied. I can control all of the images and formatting via the style sheet but can't see any way to to control the location of the image used for the DatePopupButton ImageUrl and HoverImageUrl. Is there a way to specify where these images are located or do I need to specify this everytime I place the control?

Thanks.
Michael

Michael
Top achievements
Rank 1
 answered on 09 Oct 2008
3 answers
160 views
Hello all--

I'm trying to get RadEditorMOSS Lite installed, and I'm running into a problem.

I have 3 servers in the farm: SQL cluster, SPS (web front end), and SPS-JI (application).

My admin console runs on SPS-JI.  I've tried adding the solution on SPS and SPS-JI with no luck.

I can add the solution using stsadm with no problem, but when I deploy the solution I get the following:
Name: radeditormoss.wsp
Type: Core Solution
Contains Web Application Resource: Yes
Contains Global Assembly: Yes
Contains Code Access Security Policy: No
Deployment Server Type: Front-end Web server
Deployment Status: Error
Deployed To: None

I've tried deploying to a single web (extranet.domain.com) and the entire installation with the same result.

I've looked in all the logs I can find, and the only reference to the solution is in C:\WINDOWS\system32\LogFiles\W3SVC1696564696\ex081002.log:
2008-10-02 17:28:38 W3SVC1696564696 192.168.192.168 GET /_admin/SolutionStatus.aspx ItemName=radeditormoss%2Ewsp&Lcid=0 46557 DOMAIN\Administrator 192.168.192.186 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.2;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.04506.30;+.NET+CLR+3.0.04506.648) 200 0 0

I do not see anything in the event logs for either server...

Any ideas?

Thanks,
Joe

Lini
Telerik team
 answered on 09 Oct 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?