Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
78 views
Hello  , I'm Al-Shawamreh Mohammad

I Developed some web projects using Telerik Ajax 2010 Q2 components and work fine (on my PC)
but when i`m copy the project to my laptop and start debugging the page , the page appear in the browser but nothing work !!
it`s appear like a photo , no actions ..

Thanks

Prangadj
Top achievements
Rank 1
 answered on 26 Apr 2011
5 answers
133 views
Hi,
I want to use the listview control in the 2009.2.826.20 version of radcontrol.
Is it possible?

If so, how? How do i reference it and use it.
I am not able to find the listview control neither in the toolbox or via the code in .ascx file in visual studio 2008.

Thanks
Vishesh
Sebastian
Telerik team
 answered on 26 Apr 2011
1 answer
66 views
Hi

I am wondering whether there is a 'Telerik' way to do the following:

I have an image gallery application based on showthumb.aspx and Lightbox running, and I want to
embed this in a page in a website.  One way to do this is using iFrame, but the major problem with that 
is that the javascript windows for viewing images open within the frame (and the popups are larger than the iframe)
rather than as part of the current document.  

There is an open source control called 'Uframe' but it has not been updated since 2008, and I would rather use a Telerik control approach if possible.

Can anyone suggest the best way to do this?

Thanks a lot for any suggestions. Apologies if I am overlooking something really simple!

Clive
Sebastian
Telerik team
 answered on 26 Apr 2011
2 answers
165 views
I want to set the minimum width of the top of the menu, not including the child dropdown nodes, to 100px.  I tried setting width="100px" and Style="min-width: 100px", but when I click on the menu, it doesn't fill the whole 100px space, and looks weird, when the selected value is less than 100px.  I've included a picture as an example.  If there is some CSS attributes I can add to fix this, please let me know
Richard M
Top achievements
Rank 1
 answered on 26 Apr 2011
1 answer
51 views
Hi;
We are using Telerik  hirerarical RadGrid in that we have a requirement of multiple selection of two Grid. ie we are have Grid with in the Grid and we need to select all the grid simulatenously.Can you please tell us that how we can achive this functionality.
Daniel
Telerik team
 answered on 26 Apr 2011
1 answer
81 views
Hi,

I have set the height of the rotator and this would accommodate 3 items. If the list that I am binding contains <= 3 items then the up and down arrows should be disabled. How can I achieve this.

TIA,
Uday
Niko
Telerik team
 answered on 26 Apr 2011
3 answers
159 views
I'm having a couple of issues with the Custom Color picker option on the WebPalette (EnableCustomColor):

<telerik:RadColorPicker ID="RadColorPicker1" runat="server" EnableCustomColor="True"
       ShowRecentColors="True" ShowIcon="True">
      </telerik:RadColorPicker>

When I select a color on the custom color popup, the color selected seems to be filtered by the luminosity slider on the right.  For example, if I select a dark red or blue, and the luminosity slider is all the way at the top (which it is by default), the selected color is #FFFFFF.  This was very confusing at first.  Is there a way to change this behavior so that the actual color picked is selected?

My second question is whether a default color can be specified for the Custom Color picker.  I'd like the color selected by the RadColorPicker to be initially selected in the Custom Color Picker.  Is that possible?

Thanks in advance.
Niko
Telerik team
 answered on 26 Apr 2011
1 answer
135 views

hi

when i use radajax in my login panel, sometimes i get this error message:

System.Web.HttpException (0x80004005): The length of the query string for this request exceeds the configured maxQueryStringLength value. 
 at System.Web.HttpRequest.ValidateInputIfRequiredByConfig() 
 at System.Web.HttpApplication.ValidateRequestExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() 
 at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
at http://elix.ir:80/WebResource.axd?d=QKIdEQgXIJhOS6nEbL0GA26gwLz8CyDbQ0NK4tfT_ytfAlSrNGAKsRkbQ4C-u8a8Y6_H-6xgUpTGI4yt7wCD7YBt,%20'ctl00_btnLogin')">خلاصه%20وضعیت
ارسال%20آگهیدریافت%20آگهیواریز%20به%20حساببرداشت%20از%20حسابپیام%20های%20دریافت%20شدهارسال%20پیام%20به%20سایتویرایش%20مشخصاتخروجاطلاعاتامروز:%20یکشنبه%201390.2.4تبلیغات%20امروز:تبلیغات%20دیروز:45,982%20نمایش799%20کلیک35,875%20نمایش910%20کلیکواریز%20به%20حساب
تمامی%20حقوق%20این%20سایت%20محفوظ%20و%20متعلق%20به%20شرکت%20چکاوک%20ایده%20پرداز%20می%20باشد.

my code is:

<tlk:RadScriptManager ID="radScriptManager" runat="server" />
<tlk:RadAjaxManager ID="radAjaxManager" runat="server"
    DefaultLoadingPanelID="radAjaxLoadingPanel">
    <AjaxSettings>
        <tlk:AjaxSetting AjaxControlID="pnlLogin">
            <UpdatedControls>
                <tlk:AjaxUpdatedControl ControlID="pnlLogin" />
            </UpdatedControls>
        </tlk:AjaxSetting>
    </AjaxSettings>
</tlk:RadAjaxManager>
<tlk:RadAjaxLoadingPanel ID="radAjaxLoadingPanel" runat="server"
    InitialDelayTime="500"
    Skin="Default">
</tlk:RadAjaxLoadingPanel>
<asp:Panel ID="pnlLogin" runat="server"
    DefaultButton="btnLogin">
    <div>
        <asp:Label ID="lblUsername" runat="server"
            AssociatedControlID="txtUsername"
            Text="username " />
    </div>
    <div>
        <asp:TextBox ID="txtUsername" runat="server"
            MaxLength="50"
            style="width:175px;" />
    </div>
    <div>
        <asp:Label ID="lblPassword" runat="server"
            AssociatedControlID="txtPassword"
            Text="password " />
    </div>
    <div>
        <asp:TextBox ID="txtPassword" runat="server"
            MaxLength="50"
            style="width:175px;"
            TextMode="Password" />
    </div>
    <div>
        <asp:Button ID="btnLogin" runat="server"
            CssClass="btn"
            OnClick="btnLogin_Click"
            Text="login"
            ValidationGroup="login" />
    </div>
</asp:Panel>

i use Telerik.Web.UI v2011.1.322.40

What is the reason for this error and how i can fix it?

Daniel
Telerik team
 answered on 26 Apr 2011
19 answers
383 views
Hi,
     Is it possible to add a remainder flag in scheduler like one we add in Microsoft Office Outlook..
any idea
Shan Sundar
Top achievements
Rank 1
 answered on 26 Apr 2011
1 answer
39 views
Hi ,

 im using ie 9 , and offen occurs an error binded with ajaxmanager , the code looks like this
var Ajarg ="sizechange"; 
var ajm =  $find("<%=RadAjaxManager1.ClientID %>");
 ajm.ajaxRequest(Ajarg);
and then I get a parameter count exepction in ie8 it's ok .

what can i do to fix this errror?
Maria Ilieva
Telerik team
 answered on 26 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?