Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
79 views
hello,

   i have a horizontal radmenu and when i open a radWindow PopUp than its menubar hides inside the radMenu.

how i can make "alway on top" to a radWindow Popup.


Thanks.
Svetlina Anati
Telerik team
 answered on 22 Oct 2008
1 answer
309 views
Hello,

I followed instructions on http://www.telerik.com/help/aspnet/grid/grdskins.html in order to remove the skin completely and use my custom properties and CSS.

I put Skin="None" however, when the grid is rendered I get the following:

<DIV class="RadGrid RadGrid_None" id=ctl00_PageContent_UcDrpProjects1_RadGrid1 tabIndex=0><!-- 2008.2.826.20 -->
<TABLE class=MasterTable_None

where is this coming from? And if I put my own Css="myCss" it will put "MasterTable_None myCss"

By the way, all properties work except cellpadding. The padding is properly displayed in designer, but when ran, it's not reflected on the table dispite the cellPadding=5 being there after html rendering.

The following is my radgrid definition:



  <telerik:RadGrid
                ID="RadGrid1"
                runat="server"
                AutoGenerateColumns="False"
                DataSourceID="ads_Projects"
                GridLines="None"
                AllowSorting="True"
                PageSize="5"  
                ImagesPath="../Images/"
                CellPadding="5"
                EnableEmbeddedBaseStylesheet="False"
                EnableEmbeddedSkins="False"
                Skin="None"
                AllowPaging="True"
                
                >
                    <MasterTableView
                    DataKeyNames="OrderID"
                    DataSourceID="ads_Projects"
                    BackColor="#75A19B"
                    CellPadding="5"  
                    CellSpacing="1"
                    Font-Bold="False"
                    Font-Italic="False"
                    Font-Overline="False"
                    Font-Size="Small"
                    Font-Strikeout="False"
                    Font-Underline="False"
                    GridLines="None"
                  >



Thanks
Dimo
Telerik team
 answered on 22 Oct 2008
1 answer
166 views
I have a RadSlidingPane that has a div that is populated with a CSS menu from javascript thats wrapped in a DIV (whos position is set to relative). When the menu is larger than the RadSlidingPane a scrollbar appears, however the menu elements do not move up and down with the scrollbar they remain fixed. however, if i move the scrollbar to a different position and then reopen the slider pane the menu appears elsewhere on the screen (as if it had been controlled by the slider. I can provide screenshots / example code if you prefer?). the problem i have is that i need the RadSlidingPane scroll bars to deal with this as the CSS menu has elements floating off the right of the menu which will overlap the RadSlidingPane.

The additional problem is at present even though the scrollbars dont work when clicked they sometimes cause iExplorer to totally crash out! causing "an unhandled win32 exception" which occurs in iexplorer.exe. Have you had similar experience with this happening in the past with this control?

Any help with this would be great!

find below an exert of the code that controls the Slide menu. the <div id="Portal_top_menu" contains the CSS Menu

<telerik:RadSplitter ID="uiNavSplitter" runat="server" Width="99.9%" BorderSize="0" Skin="Office2007" Height="100%" OnClientLoaded="OnClientLoadedHandler" HeightOffset="124">
                        <telerik:RadPane ID="uiLeftPane" runat="server" Width="22" Style="margin-top: 10px;">
                            <telerik:RadSlidingZone ID="uiLeftSlidingZone" runat="server" Width="22" BorderStyle="None">
                                <telerik:RadSlidingPane ID="uiPortalNavigatorPane" Title="Portal" runat="server" Width="300" EnableResize="False" Height="56px" TabView="TextOnly" DockText = "AutoHide" UndockText="AutoHide" OnClientDocked="OnDock" OnClientUndocked="OnUndock">
                                    <!-- Portal Navigator -->
                                    <div id="PortalNavigatorPanel" class="CompNavMenuBack">
                                        <div id="uiPortalNavigator" style="margin-bottom: 10px; white-space: nowrap">
                                            <input id="NavCrumbTrail_2" class="NavMenuCrumbTrail" readonly="readonly" type="text" />
                                            <a class="NavMenuButton" href="javascript:NavBack(true, 2)">
                                                <img id="BackImg_2" alt="Back" src="../images/NavImages/back.gif" style="border: 0px" /></a>
                                            <a class="NavMenuButton" href="javascript:NavHome(2)">
                                                <img id="HomeImg_2" alt="Back to root" src="../images/NavImages/home.gif" style="border: 0px" /></a>
                                        </div>
                                        <!-- Top menu placeholder -->
                                        <div id="Portal_top_menu" class="NavMenu" style="position: relative;">
                                        </div>
                                    </div>
                                    <!-- Portal Navigator END -->
                                </telerik:RadSlidingPane>
Svetlina Anati
Telerik team
 answered on 22 Oct 2008
2 answers
94 views
How do i initiate an ajax event, i would like to reload/rebind the grid after every save function on a page, the code below shows what i have done so far but i think im missing the final part of initing the event that trigers AJax Reload.

 

Html Code

 

<

 

telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest">
<AjaxSettings>
   <telerik:AjaxSetting AjaxControlID="rdgContacts">
          <UpdatedControls>
                 <telerik:AjaxUpdatedControl ControlID="rdgContacts"/>
         </UpdatedControls>
    </telerik:AjaxSetting>
  </AjaxSettings>
</telerik:RadAjaxManager>

Code behind
protected

protected

 

void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
rdgContacts.Rebind();
}

 

Omlac
Top achievements
Rank 1
 answered on 22 Oct 2008
7 answers
202 views
Hi All

I am using RadTabstrip,RadScheduler

In my application , I added 4 tab  as follows

1>Tab1 Contain control
 RadGrid
2>Tab2 Contain  control
 Radscheduler
3>Tab3 Contain control
RadGrid
4>Tab4
 RadGrid

For RadScheduler i added  event as 
RadScheduler_Databinding
and RadScheduler_AppointmentCreated

Issues

When i go from Tab2  to any other tab it work fine
But when i go from Tab3 to Tab4 or
 From Tab4 to Tab3 or
 from Tab3/Tab4 to Tab1 it execute the event
'RadScheduler_AppointmentCreated'

How can i control the event RadScheduler_AppointmentCreated' to call only when Tab2 is click.

Thanks


 
Peter
Telerik team
 answered on 22 Oct 2008
1 answer
55 views
 I have used asp.net updatepanel. It doesnt make any exception.

Is there telerik Updatepanel. I haven't found it.


Missing User
 answered on 22 Oct 2008
5 answers
111 views
Hello,

I'm having a problem with the real-time Gridview filtering example I downloaded from the site ( http://www.telerik.com/community/code-library/submission/b311D-mtkce.aspx ).

for my project, i need to filter through a checkboxlist, so i have substituted out the controls .... here's where i'm stuck ...
"$find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Filter");"

for some reason it cant find the RadAjaxManager on the page ... what can i do about this?
      




Maria Ilieva
Telerik team
 answered on 22 Oct 2008
1 answer
146 views
Hi All,
I am using RadScheduler

I change the icon for delete appointment

By adding following css.


.RadScheduler_Outlook .rsAptDelete
{
    background:url('images/NewDeleteIcon.gif') no-repeat;
    height:11px;
    right:3px;
    top:3px;
    width:11px;
    text-indent:-99em;
}



But When first time when Radscheduler load it shows the default icon for delete appointment.
When i go to other view from the default view.(ie. from day to week view) it show me the new icon which are i applied in css.
Then after it shows the new delete appointment icon.

I want to show the new icon for delete appointment when Radscheduler load first time.
how can i solve this problem ?
Please help me.
Thanks
Peter
Telerik team
 answered on 22 Oct 2008
1 answer
140 views
I have some problem with the radajax

When i click on radscheduler, i click week,day,month or another click on radscheduler, the radtreeview every time is duplicate, if i make 4click on radscheduler, i have in my page 4 radtreeview identical

My radtreeview is generate by code-behind ---> GenerateTreeview()

my code:

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxSettingCreating="RadAjaxManager1_AjaxSettingCreating" 
                OnAjaxRequest="RadAjaxManager1_AjaxRequest"
                <AjaxSettings> 
                    <telerik:AjaxSetting AjaxControlID="RdTreeViewAule"
                        <UpdatedControls> 
                            <telerik:AjaxUpdatedControl ControlID="RadScheduler1" LoadingPanelID="RadAjaxLoadingPanel1"/> 
                             <telerik:AjaxUpdatedControl ControlID="LabelType" /> 
                          </UpdatedControls> 
                    </telerik:AjaxSetting> 
                    <telerik:AjaxSetting AjaxControlID="DDLCategotoriaPrenotazione"
                        <UpdatedControls> 
                        <telerik:AjaxUpdatedControl ControlID="LabelType" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting> 
                    <telerik:AjaxSetting AjaxControlID="RadScheduler1"
                    <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="RdTreeView" /> 
                    </UpdatedControls> 
                    </telerik:AjaxSetting> 
                    <telerik:AjaxSetting AjaxControlID="RadCalendar1"
                        <UpdatedControls> 
                            <telerik:AjaxUpdatedControl ControlID="RadScheduler1" LoadingPanelID="RadAjaxLoadingPanel1" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting> 
                </AjaxSettings> 
            </telerik:RadAjaxManager> 

The radcontrol are inside updatepanel and contetemplate...


Maria Ilieva
Telerik team
 answered on 22 Oct 2008
1 answer
168 views
Hi

I have a grid where i actually have two lines where i show some totals. Currently i have solved it using the code below.
However this simply doesnt give the same look as it would if it was actually two footer lines.

Is it possible to create another footer ?


        gridFooterItem["pr"].Controls.Add(getTable("FirstText","SecondText"));  
 
        private Panel getTable(string s1, string s2)  
        {  
            Panel mTemp = new Panel();  
            mTemp.Controls.Add(new Label() { Text = s1 });  
            mTemp.Controls.Add(new LiteralControl("<br/>"));  
            mTemp.Controls.Add(new Label() { Text = s2 });  
 
            return mTemp;  
        } 
Yavor
Telerik team
 answered on 22 Oct 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?