Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
214 views
I am having a strange issue.
I can Delete folder, I can upload image, I can move image, I can move folder. I CANNOT create new folder.
Windows Internet Explorer popup msg after click 'new folder' with calling it mytestfolder

Request for the permission of type system.security.permissions.FileIOPermission,mscorlib, Version= 2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.

Any ideas? I got the ISP to grant the iuser acct full prvlg and that did not get rid of the issue.
<telerik:RadScriptManager ID="RSM" runat="server"></telerik:RadScriptManager>
  <telerik:RadFileExplorer Width="400" ID="RadFileExplorer1" Runat="server">
            <configuration DeletePaths="~/Images/CMS"  
            UploadPaths="~/Images/CMS" 
             MaxUploadFileSize="200000"
            ViewPaths="~/Images/CMS"/>
            <Configuration />
        </telerik:RadFileExplorer>

I also went to the point of adding the following to my web.config

 

<location allowOverride="true" path="~/Admin"> 
  <system.web>
    <trust level="Full" originUrl="" />
  </system.web>
</location>


with no result.


mac
Top achievements
Rank 1
 answered on 30 Nov 2010
6 answers
198 views
Hi
I want to open a tooltip to update a record on a cell click in a Radgrid,
However i dont want to use anything other than a simple bound column with data in the cell,

Can anyone advise me of any method of doing this please.

Many Thanks

Rgds

Darren
Cush
Top achievements
Rank 1
 answered on 30 Nov 2010
1 answer
120 views
Hi,

We have upgraded our custom controls from an earlier version (2008Q3) of Telerik to 2010Q2.
One of them uses a combobox in a very simple matter. The user can select a known value or type something new.
Below the control there are some textboxes that react when the value of the dropdown is changed. When a known value is selected, it gets data from the database, otherwise input is enabled.

There seems to be a problem that when you clear the dropdown (= select all and then do "backspace") no sever event is fired
In the previous version of the control the "textchanged" event was fired, which is imho correct: the text is changed to nothing.

I know I can build around this with ajax and clientside events, but then I have to rewrite the servercontrol (2 of them) and I preferably don't. Maybe there is some property/event that I don't know off? 

Also we love to keep up with the new releases, but because you guys change A LOT each time, it's impossible to keep up. Especially for the designers they don't understand why everything (=classes, nesting) always changes so much.
So upgrading to 2010Q3 is therefore out of the question I'm afraid.

Thanks in advance!
Gompje
Top achievements
Rank 1
 answered on 30 Nov 2010
3 answers
314 views
Is it possible to hide the 'Today' link in the RadScheduler NavigationPage so that only Previous, Next, and the date picker are visible?
Veronica
Telerik team
 answered on 30 Nov 2010
3 answers
148 views
Hi Telerik Team,

I have ComboBox as below which does not get displayed properly after postback. Please refer to attached image (Combobox for 'Existing Documents' ).
 <telerik:RadComboBox ID="rcmbExisting" runat="server" AutoPostBack="true" CausesValidation="false" EmptyMessage="Select Existing"  Width="300px" Height="250px" EnableLoadOnDemand="true" ShowMoreResultsBox="true" EnableVirtualScrolling="true" ItemsPerRequest="250" OnItemsRequested="rcmbExisting_ItemsRequested" />

Please suggest solution.

Thanks in advance. 

 

With Regards,
Reena 

 

Yana
Telerik team
 answered on 30 Nov 2010
2 answers
149 views
Hello,

When l have a RadGrid with the following defined:

<ClientSettings>
<ClientEvents OnCommand="rg_Command" />
</ClientSettings>

I get an error that it cannot find a DataKeyColumn or DataRelation for a DataKeyName I have defined in the grid... on inspection of the grid, when this is defined and no data is present, it binds an empty DataTable with 11 rows, but it's missing the DataKeyName?  What is this table and why is this happening?

Thanks.
Brian Mains
Top achievements
Rank 1
 answered on 30 Nov 2010
3 answers
122 views

I was using the RadTabStrip.Net2 dll in my project. In the project I had RadTabStrip as shown below.

<radTS:RadTabStrip id="TabStrip" runat="server" SkinsPath="resources/Skins/" Skin="SimpleBarBlue" MultiPageID="MultiPage"
SelectedIndex="0" UseEmbeddedScripts="true" OnClientTabSelected="TabCallback" ClickSelectedTab="true" EnableViewState="false"
/>

OnClientTabSelected, I am calling Javascript function "TabCallback" where I find the selected TabIndex and its childIndex as shown below.

function TabCallback(sender, eventArgs) 
  {
    if(!eventArgs.Tab.Tabs[0] || eventArgs.Tab.DepthLevel == 2)
      {
         var tab = eventArgs.Tab.Index;
         var innerTab = 0;
         if(eventArgs.Tab.DepthLevel == 2)
           {
              tab = eventArgs.Tab.Parent.Index;
              innerTab = eventArgs.Tab.Index;
           }
           setCookie("TabID", tab);
           setCookie("InnerTabID", innerTab);
           setCookie("ViewID", eventArgs.Tab.Value);
           window["<%= RadAjaxManager1.ClientID %>"].AjaxRequest
                (tab + "|" + innerTab + "|" + eventArgs.Tab.Value);           
     }
                resize();
  }


Now I am using another dll Telerik.Web.UI . But I am surprised to see these properties like Tab.Index, Tab.Depthlevel, Tab.Parent.Index doesnt work in new dll. Its says the object doesn't support these properties. I really need these functionalities. Can any one tell me the equivalent clientside properties in the new Telerik.Web.UI dll.

And one more thing, I am using the licensed dll and I need quick reply but I dont know how to get a ticket and post my questions. I would like to know about this too..

With Regards
Ravi
Yana
Telerik team
 answered on 30 Nov 2010
3 answers
81 views
I should create a button into a user control that performs a refresh a RadGrid and a FormView .

this is the structure of website:

Structure.png

how can I set the best AjaxSettings to set the button imbRefresh to update objects outside the user control?
Maria Ilieva
Telerik team
 answered on 30 Nov 2010
1 answer
66 views
Hi,

I have the below controls in my page. (Main Page)
1. Webuser control (Contains a radtreeview with radmenu)
2. Radgrid
3. Button

Functionality:
Onclicking button I am opening a Showmodaldialog window. On this window I will add new record and I need to update my Webusercontrol and Radgrid from the main page. But its not updating the usercontrol.

Please refer the below code what I have in my main page:

<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="btnAddNewFolder" EventName="Click">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="ucDocumentConsole" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="btnAddNewDocument" EventName="Click">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="ucDocumentConsole" LoadingPanelID="RadAjaxLoadingPanel1" />
                <telerik:AjaxUpdatedControl ControlID="ucDocumentSpace" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="ucDocumentConsole">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="grdDocumentManager" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>

Please let me know how can I update the usercontrol after the showmodalwindow closed.

Thanks in advance.

Regards,
Babu R
Pavlina
Telerik team
 answered on 30 Nov 2010
9 answers
472 views
Hello,

I'm attempting to find a solution for updating a RadGrid's filter when the user right clicks a grid cell and selects a filter option.  For example, if the user right clicks the column "First Name", a context menu will appear with a list of valid filter options.  Once a filter option has been selected, the filter text box will be filled with the value of the right-clicked cell and the selected filter will be applied. 

I have done several searches and have not seen any examples similar to this.  Are there any samples that exist with this type of functionality?  Is this possible with the RadGrid?  I have a few potential ideas for a work around, but I wanted to see if this was possible.

Thanks,
Jerry
amonte
Top achievements
Rank 1
 answered on 30 Nov 2010
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?