Telerik Forums
UI for ASP.NET AJAX Forum
8 answers
188 views
Hi guys;

When we use loading panel in our project we are getting some errors.
Our project have two panels and also two button into these panels when and
the loadiing panel firing with buttons ,we are getting  _event error and the
other error "Microsoft JScript runtime error: 'null' is null or not an object rad ajax manager".How we solve that problem..
(In other words,I wanna control loading panel with that buttons..)
our code like that;
<panel>
          <button>
</panel>
<panel>
        <button>
        <radgrid>
</panel>
        <loading panel>
Some code parts are coppied bellow there..

 

 

<telerik:RadAjaxManager ID="SiparisRadAjaxManager" DefaultLoadingPanelID="SiparisRadAjaxLoadingPanel"

 

 

 

 

 

 

runat="server">

 

 

 

 

 

 

<AjaxSettings>

 

 

 

 

 

 

<telerik:AjaxSetting AjaxControlID="SiparisRadGrid">

 

 

 

 

 

 

<UpdatedControls>

 

 

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="SiparisRadGrid" LoadingPanelID="SiparisRadAjaxLoadingPanel" />

 

 

 

 

 

 

</UpdatedControls>

 

 

 

 

 

 

</telerik:AjaxSetting>

 

 

 

 

 

 

<telerik:AjaxSetting AjaxControlID="SiparisKaydetButton" EventName="SiparisKaydet_Click">

 

 

 

 

 

 

<UpdatedControls>

 

 

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="SiparisPanel" LoadingPanelID="SiparisRadAjaxLoadingPanel" />

 

 

 

 

 

 

</UpdatedControls>

 

 

 

 

 

 

</telerik:AjaxSetting>

 

 

 

 

 

 

<telerik:AjaxSetting AjaxControlID="SiparisDetayKaydetButton" EventName="SiparisDetayKaydetButton_Click">

 

 

 

 

 

 

<UpdatedControls>

 

 

 

 

 

 

<telerik:AjaxUpdatedControl ControlID="SiparisDetayPanel" LoadingPanelID="SiparisRadAjaxLoadingPanel" />

 

 

 

 

 

 

</UpdatedControls>

 

 

 

 

 

 

</telerik:AjaxSetting>

 

 

 

 

 

 

</AjaxSettings>

 

 

 

 

 

 

</telerik:RadAjaxManager>

 

 

 

 

 

 

<telerik:RadAjaxLoadingPanel ID="SiparisRadAjaxLoadingPanel" Skin="Web20"

 

 

 

 

 

 

runat="server">

 

 

 

 

 

 

</telerik:RadAjaxLoadingPanel>

 

 

 

 



fibonacci
Top achievements
Rank 1
 answered on 01 Feb 2011
1 answer
65 views
Is it possible to have one spell check control at the Page/form level for all controls inside the page/form?
Please help with example.
Thanks
Rumen
Telerik team
 answered on 01 Feb 2011
1 answer
195 views
Hi
I have an issue where I create a RadWindow which contains a drop-down. The drop-down has quite a number of items, so the height of it needs be larger than the RadWindow itself. What I want is for the drop-down to show over the RadWindow and the over the window behind as well. Instead, the RadWindow creates a vertical scrollbar and the drop-down remains contained within the RadWindow.
Does anyone know of any way to effectivly make the inner control show in front of everything else and avoid the scrolling effect?
I have attached a file showing what the problem is - might be easier to understand!
Thanks in advance!
Georgi Tunev
Telerik team
 answered on 01 Feb 2011
9 answers
199 views
I have three docks in three zones, and a destination zone. I want to be able to drag docks into the destination zone, only allowing for at most one dock in the destination zone. I've written custom javascript code to do this, but my problem is that when I drag a dock onto the destination zone, before I let go of the mouse, the placeholder already shows up - it effectively pushes around the existing dock in the destination zone. How do I disable the placeholder? This is the code that checks to see if the destination zone contains a dock and if so, prevents another one from being dragged in there (on the dock I have OnClientDrag set to DragDock, this function):

        function DragDock(dock) {
            // get the hit zone
            var hitZone = dock._hitZone;
           
            if (hitZone != null) {
                // find out if the hit zone has a dock
                if (hitZone.get_docks().length > 0) {
                    // if so, add the hit zone to the list of forbidden zones of the incoming dock
                    var forbiddenZones = dock.get_forbiddenZones();
                    forbiddenZones.push(hitZone._clientID);
                }
            }
Pero
Telerik team
 answered on 01 Feb 2011
13 answers
197 views
Hello,

I have come across the following javascript code to access a collection of ComboBox objects:

var combos = Telerik.Web.UI.RadComboBox.ComboBoxes;

Is there an equivalent for RadTextBoxes?

Thanks,

Ken Jones
Ken Jones
Top achievements
Rank 1
 answered on 01 Feb 2011
2 answers
295 views
I'm using the radbutton as replacement for radio and checkboxes on a web kiosk application.
I need to do a lot of client side functionallity with them but the documentation is not that good.
I need to be able to get the count of the selected checkboxes, I need to know if there is at least one radiobutton or checkbox selected, I need to be able to uncheck checkboxes if you click an specific one (mutually exclusive), etc.
All this is easily achievable using jQuery and standard radio and checkbox controls.
Could you point me in the right direction on how to achieve this using the radbutton.
I'm using custom toggle by the way.

Thanks,

Pablo Tola.
Pablo Tola
Top achievements
Rank 2
 answered on 01 Feb 2011
3 answers
236 views
Hi,

As the title asks -- is this possible/supported? I have this:

<style type="text/css">
    .style1
    {
        text-align: center;
        background-color: #CEDEF4;
        font-weight:bold;
        color: #224499;
        border-radius: 10px;
    }
    .RoundedStyle
    {
        border-radius: 10px !important;
    }
</style>
</head>

<telerik:RadSplitter ID="RadSplitter1" Runat="server" Skin="Web20"
 Width="100%" BorderSize="2" OnClientLoad="OnSplitterLoaded"
BackColor="White" CssClass="RoundedStyle" >

When I do this nothing happens. I applied the CssClass to children controls of the RadSplitter just fine. 

Any ideas?

Thanks,

Sean

EDIT: Just as another quick question. I changed the width of a sliding zone inside of my splitter. The skin of the splitter is being picked up. But it looks weird because I changed the width of the sliding zone from default. Is there a way to fix this? 
Dobromir
Telerik team
 answered on 01 Feb 2011
1 answer
207 views
Hi,
I want to use ConfirmTemplate for placing my desired buttons (Actually I just want to change the order of Ok and Cancel buttons).
That's a shared templates for some confirms in my page.
Now I want the message shown in the confirm comes dynamically from the radconfirm method, but because of defining template the message is not shown and a static message defined in template is show.
How can I solve my problem?
Georgi Tunev
Telerik team
 answered on 01 Feb 2011
2 answers
95 views
I need to obtain a single selected record from a radGrid control triggered by a user double click event. I'd like to pass the selected record with a column named ID. I believe JavaScript is the best approach to do this since it will avoid post backs which cause the page to flash. Although, I've had no success getting it to work. I'm new to Telerik and could use any help, suggestions and/or examples you may have...

Visual studio 2010
ASP.Net Web Application

Thanks 

Geoff
Geoffrey
Top achievements
Rank 1
 answered on 01 Feb 2011
1 answer
83 views
Is there any where I can set my default language to C or VB for my account, so by default I see the demo's or examples in the selected language?

Georgi Tunev
Telerik team
 answered on 01 Feb 2011
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?