Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
151 views
On a page I have a menu:
                <div style="float:right !important;"
                  <telerik:RadMenu ID="m" runat="server" Skin="Vista" style="z-index: 1000"
                    <Items> 
                      <telerik:RadMenuItem runat="server" Text="campaigns" NavigateUrl="~/LocGrp/Campaigns.aspx" /> 
                      <telerik:RadMenuItem runat="server" Text="reports" NavigateUrl="~/LocGrp/CampaignReports.aspx" /> 
                      <telerik:RadMenuItem runat="server" Text="logout" NavigateUrl="~/Log.aspx" /> 
                    </Items> 
                  </telerik:RadMenu> 
                </div> 

In the code behind I do this:
        Dim decoItem As New RadMenuItem 
        decoItem.Text = "decoplan" 
 
        Dim decoMngt As New RadMenuItem 
        decoMngt.Text = "Manage plan" 
        decoMngt.NavigateUrl = "~/LocGrp/Decoplan.aspx" 
        decoItem.Items.Add(decoMngt) 
 
        Dim decoAccess As New RadMenuItem 
        decoAccess.Text = "Manage access" 
        decoAccess.NavigateUrl = "~/LocGrp/DecoplanAccess.aspx" 
        decoItem.Items.Add(decoAccess) 
 
        Me.m.Items.Insert(0, decoItem) 

The rendered HTML:
<div style="float:right !important;"
<div id="ctl00_m" class="RadMenu RadMenu_Vista " style="z-index: 1000"
<!-- 2009.1.311.35 --><ul class="rmHorizontal rmRootGroup"
<li class="rmItem rmFirst"><href="#" class="rmLink "><span class="rmText">decoplan</span></a><div class="rmSlide"
<ul class="rmVertical rmGroup rmLevel1"
<li class="rmItem rmFirst"><href="Decoplan.aspx" class="rmLink "><span class="rmText">Manage plan</span></a></li><li class="rmItem rmLast"><href="DecoplanAccess.aspx" class="rmLink "><span class="rmText">Manage access</span></a></li> 
</ul> 
</div></li><li class="rmItem"><href="Campaigns.aspx" class="rmLink "><span class="rmText">campaigns</span></a></li><li class="rmItem"><href="CampaignReports.aspx" class="rmLink "><span class="rmText">reports</span></a></li><li class="rmItem rmLast"><href="../Loout.aspx" class="rmLink "><span class="rmText">logout</span></a></li> 
</ul><input id="ctl00_m_ClientState" name="ctl00_m_ClientState" type="hidden" /> 
</div> 
</div> 

In both ID6 and Firefox 3.07 a few pixels left-padding are added to the "Manage plan" item. I'll send/upload a screen shot if you want.

How do I get rid of the extra few pixels?
Atanas Korchev
Telerik team
 answered on 20 Mar 2009
1 answer
160 views
Hi

I am showing some records in RadSheduler with some time slots for each record.

eg: Vehicle1 from 13.02.2009 to 14.03.2009
      Vehicle2 from 15.03.2009 to 16.04.2009
     -------------------------------------
     --------------------------------

Now my requirement is to restrict the number of records in Sheduler say i need to show only 10 records first(vehicle1-vehicle10) . Then onclick of  pagination type 1,2,3....ex: 2 then i need to show next 10 records(vehicle11-vehicle20) with corresponding timeslots.

Please help me  how to implement this pagination in RadScheduler. Thanx

Many Thanks,
Srinivas

Atanas Korchev
Telerik team
 answered on 20 Mar 2009
1 answer
107 views
Hi!

I am developing some kind of webshop, in the radDock i i display the current price Information. The contents of the dock should only visible on some Tabs. All the things work fine, except of InternetExplorer. When i do not want the labels in the dock to be displayed i only want the header to be visible, these works fine but on InternetExplorer on every Ajax Request an ugly white text line is displayed in the ContentArea of the Dock. As i want to display the current price a lot of controls cause AJAX Postbacks to the Dock.

Here is my Markup of the RadDock

    <telerik:RadDockZone runat="server" ID="DockZone" Style="background: transparent; border: none; width:220px;">  
        <telerik:RadDock runat="server" ID="CalculationDock" Title="Solution Price" DefaultCommands="ExpandCollapse" > 
            <ContentTemplate> 
                <asp:UpdatePanel ID="CalculationBox" runat="server" Visible="false" UpdateMode="Conditional">  
                    <ContentTemplate> 
                        <table style="margin: 5px 0 0 18px;">  
                            <tr> 
                               <!-- some Labels !--> 
                           </tr> 
                        </table> 
                    </ContentTemplate> 
                </asp:UpdatePanel> 
            </ContentTemplate> 
        </telerik:RadDock> 
    </telerik:RadDockZone> 

What can cause the Appearing of the white line?

Regards,
Martin
Martin
Telerik team
 answered on 20 Mar 2009
1 answer
73 views
Gud morning telerik team,

1.)
I realized that pressing the "enter key" in the rad editor causes the next paragraph to have <p></p> tags.
pressing enter again causes the third paragraph to have <p></p> tags also.

this style will cause the <p></p> tags to be Times New Roman and 11px.
    p, a, span, div, li, td, h1, h2, h3, h4, h5, h6, input
    {
        font-family: Times New Roman;
        font-size: 11px;
    }

but the first paragraph does not have <p></p> tags?
is it possible that the firstline have <p></p> tags?

expected result:
every paragraph should have <p></p> tags so that the style above will be followed by all the paragraph in the rad editor.

2.)
Second Scenario:
I am currently in the first paragraph which does not have <p></p> tags. i changed the font-family and font-size using the dropdowns above the radeditor, and pressed enter key.

expected result:
the second paragraph should follow the font-family and font-size of the first paragraph like the behaviour in "MS WORD"

actual result:
- the font-family and font-size is changed to Times New Roman and 11px.

actual correct result: (NOTE: the correct result happens in all the paragraph except the first paragraph)
- when i am currently in the second paragraph, and changed the font-family to Verdana, press "enter key"
- the third paragraph font-family is Verdana. (Which is CORRECT, since this is the behaviour in "MS WORD")


i hope i can hear from you guys,
regards,
Jonathan
_____________________________________________________________________

I edited my post because i encountered a server error.
the original title of my forum "<p></p> tags is being added in firefox 2.0"
am not expecting any answers with the issue of not being able to post with my original title.
the content of this post is more important for me.

regards,
Jonathan
Stanimir
Telerik team
 answered on 20 Mar 2009
3 answers
198 views
Hi,

I'm trying to create a ViewPort as the one http://examples.coolite.com/.

Had anyone succeded to do it using Spliiter and Tab Control? Can you give me some directions? Thank you!

I think that Telerik should create such a control because is very usefull.
Tsvetie
Telerik team
 answered on 20 Mar 2009
1 answer
77 views
I am using RadControls for ASP.Net AJAX Q3 2008. I have a tabstrip with 4 tabs on it that I use for navigation. Each tab is assigned a navigateURL. There is a <div> that displays content for the page below the tabstrip. If I hover over a tab, other than the currently selected tab, the height of this <div> is reduced and hides the content in the reduced area. 

I've been troubleshooting this for a day and I'm going mad! :) By the way, this occurs in all browsers I tested it with. (Opera, FF, IE6/7, Safari).

Any help would be greatly appreciated!
Paul
Telerik team
 answered on 20 Mar 2009
3 answers
134 views
I have a RadCalendar as part of a CRM Web App in a Master Page as part of the sidebar, similar to Outlook.  I think have a calendar.aspx page with the RadScheduler in it.  I want a user to be able to be on any other page of the site, click a date on the calendar and be directed to that date on the scheduler.  I dont want to pass the date in the query string and the RadCalendar doesn't allow you to specify the PostBackURL as a typical button.  Any suggestions?
Nikolay Rusev
Telerik team
 answered on 20 Mar 2009
2 answers
230 views
I'm using automatic inserts/updates with a grid bound to an ObjectContainerDataSource.  Some of the columns are marked as readonly in the grid and should not be updated.  However, on an insert, users should specify values for these columns.  Is there an easy way to mark a column as read-only for updates but read-write for inserts?

Thanks,

Zac
Shinu
Top achievements
Rank 2
 answered on 20 Mar 2009
1 answer
192 views
I have an asp:GridView column that is a date column.  When a user hovers over the column, we would like to popup a calendar.  Is this achievable using any of the Rad controls?  I can get it to work with RadDatePicker when the DateInput is visible, but I don't want any controls visible until the user hovers over the date.

Thanks.
Dimo
Telerik team
 answered on 20 Mar 2009
2 answers
173 views
Guys,

I am aiming to display various kinds of hierachies in a "Windows Explorer" Look and Feel way.

The paradigm of Directory/File is quite good as my hierarchies have potentially two types of nodes that can be assimilated to Directories and Files.
On the other hand, the concept of Size and File Extension are irrelevant to me so I would have to hide that.
I would also need to enable drag and drop everywhere as well as right click menus (that may adapt to the current directory/file).

I am not too sure how easy it would be to modify the RadFileExplorer "on the fly" because I don't seem to have design time access to the elements I need to add or hide/remove.

Does it sound like the RadFileExplorer is the right tool for me, or do you think it would be easier to do it all myself from scratch?


Eric
Eric
Top achievements
Rank 1
 answered on 20 Mar 2009
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?