Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
140 views
Hello Sir,

I am using RadWindow in My Application.

All works Fine with IIS6.

But When I Configure with IIS7 it's Give me Error and Not Close window and nothing do in the form.

It's Give me Cryptography Error. I think it's a Viewstate Cryptography Error.

Please Give me proper solution for that.

I attached a Screenshot of Error.

Thanks.

Kishor Dalwadi.
Georgi Tunev
Telerik team
 answered on 14 Sep 2010
1 answer
163 views
I visited the captcha demo on your site and listened to the audio example and it had a nice female voice.

When I started developing with it locally, I thought my version had a "weird" male voice (all browsers), but then when I deployed it, it had the nice female voice again.

If I play a .wav file directly from the local resource (C:\Program Files\Telerik\RadControls for ASP.NET AJAX Q1 2010\App_Data\RadCaptcha) it's the nice female voice.

Any idea why my local deploy sounds like a strange male voice when played through any browser?

Also, this is a heads-up for developers who might have the same problem.  I was trying to find a Voice="Male" or Voice="Female" type of setting and there isn't one!  lol!  :-)
Pero
Telerik team
 answered on 14 Sep 2010
1 answer
148 views
Hi,

We open some screen into RadWindow, but we would like to avoid the horizontal scrollbar because it's very unconfortable for users, so we would like to use AutoSize property but only for Width, I've try to set a fixed Height, but this property is ignored when AutoSize is set.

may be we could have a client API method like :
setSize(300, 'auto');
setSize('auto', 300);

and something smarter in server side, if Height and AutoSize is set : Autosize only Width.

Thanks
Shinu
Top achievements
Rank 2
 answered on 14 Sep 2010
2 answers
129 views
i want to change text..like new appoinment to "new schedule".

for detail see this image.
Jayesh Goyani
Top achievements
Rank 2
 answered on 14 Sep 2010
2 answers
156 views

Hello Telerik Team,

In my project I need to open a new page from source page. On the target page I need to access Page.PreviousPage property. This can be done just when you specify PostBackURL attribute on e.g. asp:button control.

I call openning target page from client side as:

<asp:Button ID="Button2" OnClientClick="OpenAttachmentWindow(); return false;" runat="server"></asp:Button>
Javascript function is:
function OpenAttachmentWindow() { 
               var wnd = $find("<%= AttachmentWindow.ClientID %>");                 
               wnd.show(); 
           }
RadWindow definition on :
<telerik:RadWindowManager ID="RadWindowManager2" runat="server">
    <Windows>
        <telerik:RadWindow runat="server" Width="560px" Height="440px" 
            NavigateUrl="~/Pages/AttachmentWindow.aspx" ID="AttachmentWindow"
            Modal="true" ReloadOnShow="true" Animation="Fade" Title="ÄŒakajte">
        </telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>

 


The question is how can I open target page from source page via RadWindow and apply PostBackURL or Server.transfer from server side which allows me to access Page.PreviousPage property.

I've found some useful links to my needs on the web.
http://www.dotnetcurry.com/ShowArticle.aspx?ID=71
http://ramanisandeep.wordpress.com/2010/01/09/access-viewstate-across-pages-in-asp-net/

Thank you for your help...

Regards Vasssek

Georgi Tunev
Telerik team
 answered on 14 Sep 2010
1 answer
126 views
Hi
hopefully the title of this post is not to confusing. Here is what I want to do:

I have a single stored procedure which returns "Customers" as the first result set and "Orders" as the second result set and "OrderDetails" as the third result set.

I use the Entity Framework Extensions to get the returned Entities into a single ObjectContext.

This works fine - I used it many times with Silverlight and WCF - all the entities and relations are materialized just fine.

This means, with a single call to a "highly specific optimized magic" Stored Procedure I get all the "master" entities and their related "child" entities at once. Good for the server, good for me, good for the environment ;)

Now what I want to do is:

Show the "master" entities and the related "child" entities in a hierarchical ASP.NET AJAX RadGrid.

What I don't know yet:

How to do it ;)
[The EntityDataSource does not work in this scenario, I guess.]

How to avoid multiple trips between the server and the client using hierarchical entities from a single context.
[There is no example or documentation covering this.]


Summary:

How to show Master-Detail "Entity Framework" Entities in a hierarchical RadGrid that come from a single call to a Stored Procedure ?

How to avoid multiple client calls to the server to fill the hierarchy from the Entities in the ObjectContext into the RadGrid ?

How would you solve this using OpenAccess ORM instead of the Entity Framework - Keeping in mind that all the data is returned from a single stored procedure call which returns the complete hierarchy in multiple result sets at once?


Cheers

Bernd
Radoslav
Telerik team
 answered on 14 Sep 2010
1 answer
131 views
Hi,

Is there a way to enable the captcha control to render a new image when the browser has javascript disabled?
Pero
Telerik team
 answered on 14 Sep 2010
3 answers
99 views
Hi

I have a function that creates,populates then returns a RadDoc. This function runs an unknow quantity of times depending on results returns from my db.
This returned dock is then added to a specific dock zone base on data in the database.

ie

 

 

 

 

For Each dashitemrow As Data.DataRowView In dsDashItems.Select(DataSourceSelectArguments.Empty)
  
            Dim dock As RadDock = CreateRadDock(dashitemrow("Itemtype"), dashitemrow("Itemid"))
  
            Select Case dashitemrow("dockindex")
  
                Case 11
                    RadDockZone11.Controls.Add(dock)
                Case 12
                    RadDockZone12.Controls.Add(dock)
                Case 21
                    RadDockZone21.Controls.Add(dock)
            End Select
  
        Next

For varying reason I want to manage the position of the docks myself and not use the dockstate.

My question is, how for these dynamically created contols can I  detect / write the DockpositionChanged event so i can then retrieve the .dockzoneID and .Index and then store them in my database?
I can do this with a statically created dock, but I am not sure how this is implemented dynamically.


I think I need something like:

detect a DockpositionChanged event in a RadDock within the RadDockLayout
    determine which Dock has fired the event
    get this dock's .dockzoneID, .Index and it's DB reference (which I could hide somewhere)
    call my DB_SP with .dockzoneid, .index and id to complete reorder
end event


Thanks

Johnathan

Pero
Telerik team
 answered on 14 Sep 2010
9 answers
144 views
Can I use Telerik asp.net ajax in Microsoft Web Developer (the free ASP.NET application ), and if so, are there any limitations.? I'm going after a one page app with RadGrid and a few forms.

Thanks

New and will hiring a developer, but want to follow along and learn.
Sebastian
Telerik team
 answered on 14 Sep 2010
1 answer
84 views
Can we get a property to have the panel do a callback to the specified webmethod on page load?  I'm writing a composite control and it would save me from having to attach a script just to do the callback :)
Pero
Telerik team
 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?