Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
139 views
Hi,
  1. We would like to have Buttons in RadControls for ASP.NET AJAX as you do for RadControls for WinForms.
  2. We need to have security controls in RadControls for ASP.NET AJAX such as Login screen, Logout, etc.
  3. Can you Include master page template for RadControls for ASP.NET AJAX

Regards,
Saleh

Todd Anglin
Top achievements
Rank 2
 answered on 04 Aug 2008
1 answer
117 views
Hi.

When you hover a node over a another node, the targeting node expands automatically. I want to disable this feature.
So any node can only be expanded by pressing the expand (+) symbol.

Thanks!
Atanas Korchev
Telerik team
 answered on 04 Aug 2008
3 answers
445 views
Hi,

We are looking closely at the overall download generated by Radcontrols asp.net Ajax Q1. A test page consisting of the following was created

MasterPage including RadMenu and RadScriptManager
Content Page containing RadTabStrip, MultiPage, ComboBox (5), DatePicker, Grid, WindowManager and 28 RadInput fields.

The page is complex, and is used for account maintenance in a membership system. We did not expect it to be small, or a quick download, but what we are experiencing is much worse than expected.

If we perform as File Save As, Web Page (complete) in IE 7, the result is a 230k html page, and an associated folder which contains over 800k worth of files, the vast majority of which are .axd files

Telerik.Web.Ui.WebResource.axd (462k!)
ScriptResource.axd (255k)
ScriptResouce(1).axd (65k)

Our overall download is over 1 mb! We have tried restructuring the page a number of times to reduce this and improve performance but nothing seems to change the size. Is the above scenario normal for the product as this seems excessive. Please comment.
Todd Anglin
Top achievements
Rank 2
 answered on 04 Aug 2008
5 answers
195 views
I want to be add a node to a tree on the clientside.  However, I want the server to create the node since my business logic is on the server side.  Is it possible to have a webservice or pagemethod return a RadTreeNodeData and use that to create a clientside RadTreeNode?  Since you can already expand from an array of RadTreeNodeData via webservice, I am sure RadTree has a way to convert RadTreeNodeData to clientside RadTreeNode.  Is there function exposed?

Atanas Korchev
Telerik team
 answered on 04 Aug 2008
1 answer
785 views
I have registered RadProgressArea and RadProgressManager in the web.config file.
as below:

<system.web>
               <httpModules>
            <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule,
Telerik.Web.UI, Version=2007.3.0.0, Culture=neutral, PublicKeyToken=e8ab424810b6b9b5 " />
        </httpModules>
        <httpHandlers>
            <add verb="*" path="Telerik.RadUploadProgressHandler.ashx"
type="Telerik.Web.UI.RadUploadProgressHandler,
Telerik.Web.UI, Version =2007.3.0.0, Culture=neutral, PublicKeyToken =e8ab424810b6b9b5 " />
        </httpHandlers>
</system.web>

I also added the RadUpload.Net2.dll and Telerik.QuickStart.dll which i downloaded from hotfix, to my project as a reference. When i run the application using MS visual studio 2005, i got the below error:

Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The system cannot find the file specified.

Please help on this, Thanks
Veselin Vasilev
Telerik team
 answered on 04 Aug 2008
1 answer
48 views
Hello,

we want to use your radeditor for moss 2007 SP1.

Is the radeditor for moss 2007 included in the following bundle:
- RadControls for ASP.NET AJAX + WinForms + telerik Reporting
price :  $1299
ASP.NET AJAX controls
WinForms controls
Reporting tool

  • WinForms controls
    Reporting tool
  • Developer License
    + subscription
    + source
please give response, because we want to buy it :)

Additional question:

Greatings
Martin
Lin
Telerik team
 answered on 04 Aug 2008
1 answer
158 views
Hi, I've been looking at your treeview control and still have some questions. I am looking for a file-system-based site navigation for a public website, and would have to meet a few requirements:
 
1. I need the final output to be table-less, purely stylesheet-driven (not inline style), accessible html -- preferably a bulleted list. We don't need advanced features like right-clicking, windows ui simulation, drag-drop, etc. Just a clean, simple output that can be read by a screen reader or other alternate agent.
 
2. One thing the out-of-box sitemap provider will do is to consider the current node to be the parent, so it populates the node structure from the current node downwards. This works until you get to a page in a folder, and then it dumbly considers that page, not its parent folder, the top node. So, you don't see that page's siblings, and you don't get a link back to the parent folder.
 
We'll use an out-of-box breadcrumb control in conjunction with this to take care of the section context. We would need the provider to populate the folder nodes from the current parent downward, and populate all of the current parent's immediate child nodes. So you would see the current parent folder, any subfolders, and any files in the current folder. The folder names in the nodes are the names of the folders. The page file names in the nodes are taken from the Title attribute of the page file. Like this.
 
<Breadcrumb> Home > About
About Us (the page is currently showing about/default.aspx)
    Introduction (intro.aspx file)
    Board of Trustees (board.aspx file)
    Jobs (folder path about/jobs)
 
When you clicked "Jobs" you'd be taken to jobs/ and see this:
 
<Breadcrumb> Home > About
Jobs (the page is currently showing about/jobs/default.aspx)
   Requirements (requirements.aspx file)
   Equal Opportunity (equal_opportunity.aspx file)
 
When you clicked "Requirements" you'd be taken to the page and see this:
 
Jobs (this is now a link to the ../about/jobs/ folder path)
  Requirements (requirements.aspx file -- this is the current page)
  Equal Opportunity (equal_opportunity.aspx file)
 
3. The provider should support an arbitrary level of folder nesting (whatever is there, it will find it). It should ideally only iterate through the current context, and should have some soft caching method so that it doesn't have to crawl after the first time unless the file structure has changed. We want to ease the load on the server but we don't want to have to restart the application every time we update the files.
 
If your software will do this, please let me know.
 
 
Thanks in advance,

David Morgan
Simon
Telerik team
 answered on 04 Aug 2008
1 answer
361 views
<telerik:RadMenu ID="MainMenu" EnableEmbeddedSkins="false" Skin="Poker" runat="server"
    <ItemTemplate> 
        <href="<%#Eval("url")%>" title="<%#Eval("description")%>"><%#Eval("title")%></a
    </ItemTemplate> 
</telerik:RadMenu> 

Hi.

This is a RadMenu control I am using on a site I am working on. I am using a sitemap file as a datasource for the menu.

How can I set a selected class on the page I am currently viewing, using the ItemTemplate ... ?
Yana
Telerik team
 answered on 04 Aug 2008
1 answer
143 views
Dear,

We have the following situation:

a webpage with a button and a treeview.
the button opens a radwindow with the user properties (SQL data)
In the window the user can change its properties

the tree is filledup according to the user properties

=> If the user changes its properties on the window and closes the tree on the base page should refresh according to the changed properties.

What could be the best approach???

I have a little rar-file with some sample code. If you need it, just tell me how to get it to you.

Thanks in advance

anaXis - Sofim Development team (Belgium)
Georgi Tunev
Telerik team
 answered on 04 Aug 2008
1 answer
80 views
Hi,

On my form, I have 2 tabstrib.
I put a RadAjaxManager in order to tell
- radstrip1 update rasstrip1
- radstrip2 update radstrip2
in order than tab change when I click on it.

With the second one I have no problem. On the first one when I click on it the size change to be smaller and return to normal. It's not very nice !!!

Do you know why ?

PS: I have the same problem with a RadGrid. My colomns size change during half a second and return to normal size.

Thanks for your help
Paul
Telerik team
 answered on 04 Aug 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?