Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
114 views
When, within the RadEditor, we create a new HTML Table, it is invisible.  The border widths are zero, the border styles are none.

If we change the border style settings, the table is visible, but finding the newly-created table in the editor pane so as change the border style settings is difficult, since you can't see it.  (I usually switch to the html pane, but we can't expect our end-users to do that.

In your demos, the borders of a table within the editor are displayed as solid 1px gray, until you edit them to something else.  My guess is that we've somehow made CSS changes somewhere that are causing the behavior we're seeing.  But we're having a difficult time tracking down where the table border style settings are defined, when displaying a table within the editor.

Where should we be looking?

Rumen
Telerik team
 answered on 12 Nov 2008
1 answer
152 views
Is it possible to change the maximum text length of the editor in javascript?
Rumen
Telerik team
 answered on 12 Nov 2008
2 answers
259 views
I can't remember exactly, nor can I find it, but I had problems with controls on a new site today and then realized the only difference between it and a working one was the Managed Pipeline was set to Classic instead of Integrated. Then I remembered that was what you had told me to do in a previous post, which I can't find.

In short, why should we use classic and not integrated? Is that something that will be "fixed" in future releases? Or will it even need a fix. In short, it just plain old don't work with integrated and at this point I don't know enough about it as to whether I'll need integrated down the road.

I use 2008 web server and IIS7 3.5 SP1.

thanks.


Moon
Top achievements
Rank 2
 answered on 12 Nov 2008
4 answers
172 views
Hi Telerik Team.

I having an issue when I use ajax within a Panelbar what is placed inside a RadSlindingZone, and the Panelbar have a onitemclick Event associated, when an item of the panel bar is clicked some text have to change on the right side of the panel. This behavior work as expected outside the RadSlindingZone.

The problem is that Page Postback is trigger not the onclik event. When the Panel is within the Pane in RadSlindingZone.

Im currently using the latest release of RadControl for ASP.NET AJAX.

Thanx for your time.

Here is the code:
<%@ Register TagPrefix="radspl" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
 <radspl:RadAjaxManager ID="RadAMang" runat="server" DefaultLoadingPanelID="panel1"
    <AjaxSettings>     
     <radspl:AjaxSetting AjaxControlID="pRutes" > 
      <UpdatedControls> 
         <radspl:AjaxUpdatedControl ControlID="ajaxpanel1" /> 
      </UpdatedControls> 
     </radspl:AjaxSetting> 
    </AjaxSettings> 
   </radspl:RadAjaxManager> 
   <radspl:RadAjaxLoadingPanel ID="panel1" runat="server" Transparency="30" BackColor="#E0E0E0" > 
     <asp:Image ID="image2" runat="server" AlternateText="........" BorderWidth="0px" ImageUrl="~/RadControls/Ajax/Skins/Default/loading.gif" />      
   </radspl:RadAjaxLoadingPanel> 
 
<div style="position:relative; height:100%; width:100%; margin:0px; overflow:hidden; margin-left:auto; margin-right:auto;"
   <radspl:RadSplitter VisibleDuringInit="false" runat="server" id="spMain" SplitBarsSize="1px" Skin="WebBlue" Orientation="Horizontal" CssClass="Posrelative" Width="98%" Height="99%"  ResizeWithParentPane="false"
       <radspl:RadPane id="SupPane" runat="server" Height="22" Scrolling="None" > 
           <radspl:RadSlidingZone id="SlidingZone1" runat="server" Height="22" ClickToOpen="true" CssClass="LeftPane"
               <radspl:RadSlidingPane id="rsPane1" title="Pane 1" runat="server" OnClientExpanded="PaneExpanded">   
                  <input id="save" style="width: 139px" type="button" value="B1"  /> 
                  <input id="Button1" style="width: 139px" type="button" value="B2"  /> 
                  <div id="message" style="width:750px; height:20px;" ></div
               </radspl:RadSlidingPane> 
               <radspl:RadSlidingPane id="rsPane2" title="Pane 2" runat="server" OnClientExpanded="PaneExpanded" > 
                  Some Text 
               </radspl:RadSlidingPane> 
               <radspl:RadSlidingPane id="rsPane3" title="Pane 3" runat="server" Scrolling="none" Width="100%" Height="100%" OnClientExpanded="PaneExpanded"
                  <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%"
                  <tr><td height="100%" width="25%"
                    <radspl:RadPanelBar runat="server" ID="pRath" Skin="WebBlue" Height="100%" Width="100%" ExpandMode="FullExpandedItem" EnableViewState="false" PersistStateInCookie="false" OnItemClick="pRath_ItemClick" > 
                    </radspl:RadPanelBar> 
                  </td> 
                  <td height="100%" width="50%" valign="top" style="text-align:center;"
                    <radspl:RadAjaxPanel ID="ajaxpanel1" runat="server" > 
                    <div runat="server" id="div1" style="width:90%; height:90%; vertical-align:top; margin-left:auto; margin-right:auto;"
                    <table cellpadding="0" cellspacing="0" width="100%" border="1"
                    <tr> 
                     <td width="30%" align="right" >text1:</td> 
                     <td width="70%" align="left" style="padding-left:5px;"
                        <input runat="server" id="Text1" type="text" value=""/></td></tr
                    <tr> 
                      <td align="right">text2:</td> 
                      <td align="left" style="padding-left:5px;"
                        <input id="Text2" type="text" value=""/></td></tr
                    <tr> 
                      <td align="right">Color</td> 
                      <td align="left" style="padding-left:5px;"
                        <radspl:RadColorPicker runat="server" ID="IDColor" ShowIcon="true" ShowEmptyColor="false" SelectedColor="white" > 
                        </radspl:RadColorPicker> 
                        </td></tr
                    <tr> 
                      <td align="right">Widht</td> 
                      <td align="left" style="padding-left:5px;"
                        <select onchange="" id="wd" name="wd"
                         <option value="2">2</option> 
                         <option value="3" selected="selected">3</option> 
                         <option value="4">4</option> 
                         <option value="5">5</option> 
                        </select> 
                        </td></tr
                    </table></div
                    </radspl:RadAjaxPanel> 
                  </td> 
                  <td height="100%" width="25%" valign="top"
                     <input type="button" id="btnNew" class="formBtnText" value=" Salvar " onclick="Save()" /> 
                  </td> 
                  </tr>                  
                  </table> 
               </radspl:RadSlidingPane> 
               <radspl:RadSlidingPane id="rsPane4" title="PANEL 4" runat="server" OnClientExpanded="PaneExpanded"
                  Some Text  
               </radspl:RadSlidingPane> 
           </radspl:RadSlidingZone> 
       </radspl:RadPane> 
       <radspl:RadPane ID="midPane" runat="server" CssClass="Posrelative" Scrolling="None" Height="22px"
       <label id="lblTitle">.</label> 
       </radspl:RadPane> 
       <radspl:RadPane id="BotPane" runat="server" CssClass="Posrelative" Scrolling="None">          
         <div style="height:100%; position:relative; z-index:20; width:100%; margin:0px; border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid; overflow:hidden;">              
         </div> 
       </radspl:RadPane> 
   </radspl:RadSplitter>     
    </div> 

chrisarauzv
Top achievements
Rank 1
 answered on 12 Nov 2008
1 answer
112 views
Hi, the "classic" version of the RadComboBox control had the ExternalCallBackPage feature.
As far as I have seen, this does not exist in the ASP.NET AJAX version of RadComboBox and loading the combobox items via WebService does not support templates.
Is there a way to load the items on demand when working with templates?

Thanks,
Martin
Atanas Korchev
Telerik team
 answered on 12 Nov 2008
2 answers
218 views
Hi

Can you show me an example of how I can use the new jQuery.js script that comes with the Q3 release of the Telerik controls?

I include it as the last js script in my scriptmanager but it causes all telerik controls to stop working and my normal jquery syntax won't work???

The JS error i get is Telerik.Web.UI.RadPanelBar is undefined but works fine when i remove the new jquery script from my script manager.

 
    $(document).ready(function() {  
        $('#Dashboard').css({ top: '-30px'});  
 
        $('#Dashboard').hover(function() {  
                  $(this).animate({ top : '0px' }, 200);              
              }, function() {  
                  $(this).animate({ top : "-30px" }, 200);  
              });  
     }); 


Regards
Atanas Korchev
Telerik team
 answered on 12 Nov 2008
1 answer
62 views
I've an ajax grid.  When the user clicks add record, the data bound drop down lists are not getting bound.  My drop down list inside the grid edit form looks like this:

                                        <asp:DropDownList ID="DropDownListPlucState" runat="server"
                                            AppendDataBoundItems="true"
                                            DataSource='<%# Cache[Global.CACHE_STATES] %>'
                                            DataTextField="Name"
                                            DataValueField="Code"
                                            SelectedValue='<%# Bind("State") %>'>
                                            <asp:ListItem Text="" Value="" />    
                                        </asp:DropDownList>

The cache has data, but I need to manually call Bind on the DropDownList.  The problem is, I can't find any event that corresponds on the server side to the "add record" click event on the grid. 

This used to work before I started ajax-ifying the grids. 

Thanks in advance.




SultanOfSuede
Top achievements
Rank 1
 answered on 12 Nov 2008
1 answer
124 views
Hi,

is it possible to get access to the datatable that is shown beneath the chart?

Thnx.
Ves
Telerik team
 answered on 12 Nov 2008
1 answer
134 views
i have a grid that automatically generate column with allowcolumnresize = true. but i also wants to display the grid on the first call with column width of 150px or automatically adjust to the length of the data in that column. any idea how to do this really apprecaite. thanks you.
Vlad
Telerik team
 answered on 12 Nov 2008
1 answer
81 views
Hi Telerik,
I have an issue with the Background-Image (CSS) in a ContentUrl file. When scrolling, the background-Image (background-repeat:repeat-y;) does not scroll with the other content.
Is there a workaround to acheive this?

Thanks for answering
Svetlina Anati
Telerik team
 answered on 12 Nov 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?