Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
95 views
Hi,

I've created a skin and when selecting a row it shows two colors as you can see in the image. Also in the group header when writing custom text there's a part that's in a different color. I've tried different colors and I've tried this a couple of months ago and now again and it's still the same.

Thanks for any help.

Regards,

John
Dimo
Telerik team
 answered on 17 Dec 2009
7 answers
189 views
I want to display the spell check button inline with other buttons (ex: Save | Spell Check), but it is putting a break in my toolbar and showing the Spell Check control on the next line. How can I prevent this?
Martin
Telerik team
 answered on 17 Dec 2009
4 answers
154 views
how do  i put a single label for the x and y axis?

Sneha

Schlurk
Top achievements
Rank 2
 answered on 17 Dec 2009
1 answer
117 views
I am doing a form to create timetable, which is a weekly based. Every scheduled period(appointment) will be saved in my database.
How to restrict from scheduling periods in particular slots.
Scenario:
If i have scheduled a period on Monday from 9:00 to 10:00, then another period should not be allowed to scheduled on any other monday from 9:00 to 10:00.
When scheduling a period, how to check with the reccurence rules of other appointments in my database.
Princy
Top achievements
Rank 2
 answered on 17 Dec 2009
1 answer
164 views
hi,

I have got this issue..please help me to over come this problem

please find the attachment



Thanks and Regards
vivekanandan.R
Dimo
Telerik team
 answered on 17 Dec 2009
3 answers
70 views
a user can potentially go crazy with how they schedule something.
they could say an appointment occurs at 9 - 12 noon every day and have it recur every hour.
That means you have tons of overlapping schedules on the calendar. This seems to put a heavy toll on the script to render that.

just wondering if others can comment on how they've been dealing with this.
Dimitar Milushev
Telerik team
 answered on 17 Dec 2009
1 answer
132 views
hi

i wanna ask if its possible to unenable 1 column in radgrid edit mode in place
because its a primary key and i want to show it but un able to modify

thanks  a lot

regards
webster
Princy
Top achievements
Rank 2
 answered on 17 Dec 2009
1 answer
92 views
I have a panel bar with a button outside the radajaxpanel. If I click the button it will goto another radpanelitem. and then come back to the save button behind code.

What I need to do is that if this button is clicked. Put a value in a session variable?

 

<telerik:RadPageView ID="RadPageView2" runat="server">

 

 

<telerik:RadAjaxPanel ID="RadAjaxPanel2" runat="server">

 

 

<telerik:RadPanelBar ID="RadPanelBar2"

 

 

OnItemDataBound="RadPanelBar2_ItemDataBound" runat="server" Skin="WebBlue"

 

 

ExpandMode="FullExpandedItem" Height="550px" Style= "position: static; border:0px"

 

 

Width="100%" oninit="RadPanelBar2_Init"

 

 

onitemclick="RadPanelBar2_ItemClick" onload="RadPanelBar2_Load">

 

 

<Items>

 

 

<telerik:RadPanelItem runat="server" Text="GENERAL INFORMATION" Font-Bold="true"

 

 

Expanded="true">

 

 

<Items>

 

 

<telerik:RadPanelItem Height="350px" Value="GeneralInformation" runat="server">

 

 

<ItemTemplate>

 

 

<uc2:ctrlAboutMe ID="ctrlAboutMe" runat="server" />

 

 

<uc5:ctrlVisitorInformation ID="ctrlVisitorInformation" runat="server" />

 

 

</ItemTemplate>

 

 

</telerik:RadPanelItem>

 

 

</Items>

 

 

</telerik:RadPanelItem>

 

 

<telerik:RadPanelItem runat="server" Text="PHYSICAL CHARACTERISTICS" Font-Bold="true">

 

 

<Items>

 

 

<telerik:RadPanelItem Value="PhysicalAttributes" runat="server">

 

 

<ItemTemplate>

 

 

<uc3:ctrlPhysicalAttributes ID="ctrlPhysicalAttributes" runat="server" />

 

 

</ItemTemplate>

 

 

</telerik:RadPanelItem>

 

 

</Items>

 

 

</telerik:RadPanelItem>

 

 

<telerik:RadPanelItem runat="server" Text="LIFESYLE AND HABBITS" Font-Bold="true">

 

 

<Items>

 

 

<telerik:RadPanelItem Value="LifeStyle" runat="server">

 

 

<ItemTemplate>

 

 

<uc4:ctrlLifeStyle ID="ctrlLifeStyle" runat="server" />

 

 

</ItemTemplate>

 

 

</telerik:RadPanelItem>

 

 

</Items>

 

 

</telerik:RadPanelItem>

 

 

<telerik:RadPanelItem runat="server" Text="RELATIONSHIPS AND CHILDREN" Font-Bold="true">

 

 

<Items>

 

 

<telerik:RadPanelItem Value="RelationshipChildren" runat="server">

 

 

<ItemTemplate>

 

 

<uc6:ctrlRelationshipChildren ID="ctrlRelationshipChildren" runat="server" />

 

 

</ItemTemplate>

 

 

</telerik:RadPanelItem>

 

 

</Items>

 

 

</telerik:RadPanelItem>

 

 

</Items>

 

 

</telerik:RadPanelBar>

 

 

</telerik:RadAjaxPanel>

 

 

<br />

 

 

<div align="center">

 

 

<asp:Label ID="lblProfileMessage" runat="server" Text=""></asp:Label>

 

 

<br />

 

 

<asp:ImageButton ID="SaveButton" OnClick="SaveButton_Click" runat="server" Visible="true"

 

 

ImageUrl="~/Images/Buttons/updatesilver.gif" />

 

 

<br />

 

 

<br />

 

 

</div>

 

 

</telerik:RadPageView>

 


Shinu
Top achievements
Rank 2
 answered on 17 Dec 2009
1 answer
84 views
I have a schedule control on a page where I cannot bind the control until the user has performed some actions on the page.  In the event where I can bind the control I have the following  code:

Me.rdSchedule.Visible = True   
Me.rdSchedule.DataSource = goDataTable   
Me.rdSchedule.DataKeyField = "DataKey"   
Me.rdSchedule.DataStartField = "StartDate"   
Me.rdSchedule.DataEndField = "EndDate"   
Me.rdSchedule.DataSubjectField = "DisplayText"   
Me.rdSchedule.DataBind() 

 


My problem is, the following error is being thrown prior to the page actually being displayed the first time.
 

 

Message: DataKeyField, DataSubjectField, DataStartField and DataEndField are required for databinding

Source: Telerik.Web.UI


Any hints?  I understand that these fields are needed to do the bind, but I don't want the bind to occur yet.

Also, is there a way to programattically add items onto the schedule versus binding?

Thanks

Chris

 

 

 

 

 

Chris Trina
Top achievements
Rank 1
 answered on 17 Dec 2009
3 answers
203 views
How can I hide hourly and yearly option buttons in RadSchedular Advanced edit form? Is there a good example or demo for working with Radschedular advanced edit form.
see attachment for options that I am talking about.

Thanks

Veselin Vasilev
Telerik team
 answered on 17 Dec 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?