Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
210 views
Half of Dropdown  not showing in Safari and Firefox.  It seems a css overlay z-index issue? or the css Height of our header?  Looks fine in IE7.

Here's screenshot: http://img115.imageshack.us/img115/8941/menusafarilo7.png

Thanks.



jincy
Top achievements
Rank 1
 answered on 04 Dec 2008
1 answer
165 views
I am using the RadDatePicker. Is there a way to disable a range of dates, say, every date before today's date... so that the user can not select them at all?

Also i am using a SharedCalendar setup and was wondering if it was possible for one calendar on the page to be able to know what date was selected on another calendar... So to explain further, if i have 2 calendars on a page and i open the first and select a date the open the second to select a second date, is it possible for the first selected date to be showen on the second calendar?

Thanks,
Duncan
Princy
Top achievements
Rank 2
 answered on 04 Dec 2008
2 answers
108 views
I have just retracted the MOSS Editor Lite Solution (we only used it to edit list items - no webpart usage) and have added the new solution (trial version of MOSS Editor 5.3) with the aim of testing functionality before purchasing it.

However as soon as the solution is deployed every page in our site fails with the following parser error: (It varies slightly on different pages - [different line numbers, but always at a line that registers tag prefixes])

 

Server Error in '/' Application.

Parser Error

Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: This page has encountered a critical error. Contact your system administrator if this problem persists.

Source Error:

Line 1: <%@ Page Inherits="Microsoft.SharePoint.Publishing.TemplateRedirectionPage,Microsoft.SharePoint.Publishing,Version=12.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" %> <%@ Reference VirtualPath="~TemplatePageUrl" %> <%@ Reference VirtualPath="~masterurl/custom.master" %>Line 2:  <html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"><head>
Line 3:  <!--[if gte mso 9]><xml>

Source File: /Pages/Default.aspx    Line: 1


When I retract the new solution (reverting back to default MS Editor) the site works as expected

Any Ideas??

This is a significant set back for us, my only saving grace is that i have done this on our development server. However we are requiring the functionality of the full version MOSS Editor asap in our production environment.

Many thanks for any help offered

Justin
Justin
Top achievements
Rank 1
 answered on 04 Dec 2008
1 answer
160 views
Hello,

Is it possible to select more than one item in the RadComboBox?

Thanks.
Serrin
Top achievements
Rank 1
 answered on 03 Dec 2008
2 answers
204 views
Can i have a full sample code of combo box updating matching values on text change, with a webservice enabled settings?
I have seen demos of it as well but still i am having difficulty in making it work.
I want to use a DatasetTableAdapter query from which i`ll search the the value from database but in which data type i have to return it or what....i am very much confused but eager to implement it in my project. Please help me!
Saad
Top achievements
Rank 1
 answered on 03 Dec 2008
0 answers
217 views
If you've trying to find a way to place a space between two vertical tabstrips and also noticed that padding only adds more height to a particular strip, try this:

<telerik:RadTabStrip EnableEmbeddedSkins="false" ID="RadTabStrip2" Skin="Telerik" Orientation="VerticalLeft" Width="100px" Style="position: relative; top: 20px; left: 47px;" runat="server">
<Tabs>
                     <telerik:RadTab Text="John" CssClass="firstTab" Width="100%" SelectedCssClass="firstTabSelected"
                        HoveredCssClass="firstTabHovered" runat="server">
                    </telerik:RadTab>
                        <telerik:RadTab CssClass="spaceTab" Enabled="false" BackColor="white" *change to whatever your background color is * runat="server">
                        </telerik:RadTab>

                    <telerik:RadTab Text="Maria" CssClass="secondTab" Width="100%" SelectedCssClass="secondTabSelected"
                        HoveredCssClass="secondTabHovered" ImageUrl="Images/blink.gif" runat="server" Selected="True">
                    </telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
 -------------------------------------------------------------------------------------------------------------------------------------
Css:

.spaceTab
{
    Width: 100px; *change to whatever width your other tabs are*
    Height: 20px; *change to whatever height you want the spacing to be*
}

Basically we're adding another tab; an "empty" tab for space.

If you are using Skins, you can follow the same method, except set the border width = 0px in the ASPX file for all the spaceTabs:

<telerik:RadTab CssClass="spaceTab" BorderWidth="0px" Enabled="false" BackColor="white" runat="server">
</telerik:RadTab>

hope this helps someone!

Damian
Top achievements
Rank 1
 asked on 03 Dec 2008
6 answers
117 views
Hi, my code in VS 2008 look like this:
    <telerik:RadMultiPage ID="radMultiPageCategories" runat="server" Width="100%"  
        SelectedIndex="0"
        <telerik:RadPageView runat="server" ID="radPageViewSorted"
             
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
            <telerik:RadPanelBar ID="radPanelBarSorted" runat="server"  
                EnableEmbeddedSkins="False" onitemdatabound="radPanelBarSorted_ItemDataBound"  
                Skin="Default" Width="100%"
                <collapseanimation duration="100" type="None"></collapseanimation> 
                <expandanimation duration="100" type="None"></expandanimation> 
            </telerik:RadPanelBar> 
             
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
        </telerik:RadPageView> 
        <telerik:RadPageView runat="server" ID="radPageViewAlphabetic"
             
             
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
            <telerik:RadPanelBar ID="radPanelBarAlphabetic" runat="server"  
                EnableEmbeddedSkins="False"  
                onitemdatabound="radPanelBarAlphabetic_ItemDataBound" Skin="Default"  
                Width="100%"
                <collapseanimation duration="100" type="None"></collapseanimation> 
                <expandanimation duration="100" type="None"></expandanimation> 
            </telerik:RadPanelBar> 
             
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
        </telerik:RadPageView> 
    </telerik:RadMultiPage> 
     

as you see there are duplicates of &nbsp; s in the code.
If I try to remove them they just come back! :(

Why this?

/Mattias

Michael Warden
Top achievements
Rank 1
 answered on 03 Dec 2008
2 answers
284 views
Hi,

I am tring to call a javascript function when a date is selected using the date picker. I am using the onchange event of the embedded DateInput control. When I type in a date this works fine. When I select a date from the calendar, the onchange event is not being raised. Should I not expect the onchange event to be raised when the date is set using the calendar? If not, what event would I use?

Thank You.
Roger Manderville
Top achievements
Rank 1
 answered on 03 Dec 2008
0 answers
81 views
Balu,

I'm using Tabstrip with four tabs...when i enter into the page...the tabstrip is flickering in the sense the tabstrip is coming into the page as from right side of the screen. I need it won't happened when i enter into the page the tabstrip is to fix there not to slide from the side.

Please help me in this issue.

Thank You...
Balu
Top achievements
Rank 1
 asked on 03 Dec 2008
0 answers
124 views
Hi All,
I have the following SQL Table, which represents the number of steps required (in order) to complete an application (Simplified):
CREATE TABLE [dbo].[tblWorkflowSteps](  
    [WFID] [int] IDENTITY(1,1) NOT NULL,  
    [Description] [varchar](500) COLLATE Latin1_General_CI_AS NOT NULL,  
    CONSTRAINT [PK_tblWorkflowSteps] PRIMARY KEY CLUSTERED   
(  
    [WFID] ASC 
)WITH (IGNORE_DUP_KEY = OFFON [PRIMARY]  
ON [PRIMARY]  
 
GO  
SET ANSI_PADDING OFF 

I also have the following table, which records application details (again simplified):
CREATE TABLE [dbo].[tblApplications](  
    [AppID] [int] IDENTITY(1,1) NOT NULL,  
    [Completed] [bitNULL,  
    [Stage] int NOT NULL,  
 CONSTRAINT [PK_tblApplications] PRIMARY KEY CLUSTERED   
(  
    [AppID] ASC 
)WITH (IGNORE_DUP_KEY = OFFON [PRIMARY]  
ON [PRIMARY]  
 
GO  
SET ANSI_PADDING OFF 
(stage is actually a foreign key referencing the the workflowID WFID of the first table)
Basically what I am looking for is a really simple char, which will list the workflow steps descriptions along the bottom, and then a single (horiz) bar, showing the current progress of the application out of all steps.
If anyone could help me with the SQL for this, I would be grateful

Regards
Mick
Mick
Top achievements
Rank 1
 asked on 03 Dec 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?