Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
134 views

Hi,

I am using the new version (Q3) of your controls, in particular the RAD Scheduler. 

I am developing a roster type system and want to limit the number of appointments (shifts) in the timeline view to 1.   I found a forum entry which does this for me, however when I insert or move an appointment the row height automatically adjusts ready to take another appointment.  Is there any way to disable this? 

Thanks

John Davis
Top achievements
Rank 1
 answered on 23 Dec 2008
1 answer
159 views
sir,
I bound the panelbar in codebehind

 

 

Dim view As DataView = ds.Tables(0).DefaultView  
RadPlBMasterMenu.DataSource = view 
RadPlBMasterMenu.DataFieldID = "SYS_POLICY_ID" 
RadPlBMasterMenu.DataTextField = "SYS_POLICY_DESC" 
RadPlBMasterMenu.DataNavigateUrlField = "LINK_NAME" 
RadPlBMasterMenu.DataFieldParentID = "SYS_POLICY_PARENT" 
RadPlBMasterMenu.DataBind()  
 

i want to set icon to each panelbar item from codebehind

plz help me...

 

Yana
Telerik team
 answered on 23 Dec 2008
1 answer
63 views
Hi

I have recently upgrade to Q3 2008.

Since then I have noticed that the height of the "Cells" (For want of a better description TD's actually) on the time bar on the left of the Rad Scheduler e.g .
8 am
9 am
10 am
11 am
etc

are less than the height of the TD's for the apointments and thus the main grid is out of sync with the time calibration.

Using IE Developer toobar and looking the styles I can seet that the appointments are set to be 25 pixels high and the time bar cells are being rendered at only 20. The class on the table for these is rsVerticalHeaderTable which the developer toolbar tracer says is setting heights to 25px but the div inside  the TR's is setting the height to 20. Is this a bug?

Hope you can help

Gary

Peter
Telerik team
 answered on 23 Dec 2008
3 answers
381 views
Hi, I have some questions on how to use the scheduler:
1. How to block some days on the scheduler so that the users cannot schedule any appointments on that day? Is there any way to show those days with a different Css style so that users know it is not meant to be clicked?
2. Is there a way to disable the Navigation icon on certain months so that users know it cannot be clicked?
3. Is there a way to setup Apponitment CssClass in DESIGN time? I know how to set it up in running time at code and feel that it would be nice if I can do it in design time. Yet I cannot figure it out.

Thanks
Peter
Telerik team
 answered on 23 Dec 2008
1 answer
75 views
Hello.

I am filtering my dataset in db, not in the IIS (RadGrid), because it contains millions of rows. During the RadGrid_NeedDataSource event, I am clearing the FilterExpression property and thus RadGrid is not resorting the dataset again. (Is it right?)

The problem is if the user does some sorting, next time the FilterExpression is empty although there are some values in filter row and also the option NO FILTER is NOT selected (another filter function IS selected).

Why?

Thank you very much.

Tom
Yavor
Telerik team
 answered on 23 Dec 2008
4 answers
94 views

Hi All

I've a VB class for all my data access, and everything works great with RadGrids, but.....

How to I tie data to a nested level table in the grid. The only examples I can find use the SQL Data Source, I have classes.

Can you point me to any samples.

Andy

Andy Green
Top achievements
Rank 2
 answered on 23 Dec 2008
1 answer
58 views
Hi,

I can able to drag a grid row without selecting it when AllowMultiRowSelection="False", but when Multi Row Selection (AllowMultiRowSelection="true") is enabled, I can't able to drag a grid row without selecting that row.

I have also disabled 'drag to select rows', but still i can't able to drag a row.

<Selecting EnableDragToSelectRows="false" AllowRowSelect="true" />

Is there any way to drag a grid row without selecting it (when AllowMultiRowSelection="true")?

Thanks & Regards,
Yavor
Telerik team
 answered on 23 Dec 2008
1 answer
81 views
1.  Does Telerik's Reporting product work the same / fine with Silverlight?

2.  Does Telerik's OpenAccess work the same / fine with Silverlight?

3.  What criteria can be used to determine whether a new project should be developed in ASP.NET AJAX vs. SILVERLIGHT?

4.  How would one go about obtaining unbiased information about which ORM might be better between NHibernate and OpenAccess?  Has Telerik performed any real comparisons in speed / scalability / reliability?  If so, results?
Ivo
Telerik team
 answered on 23 Dec 2008
3 answers
223 views
When working with windows forms, if I create an message box I can tell the system what kind of icon to include by identifying the 'type' of message box(Information, Warning, Error, etc).

I was thinking about how this could be done using radalert.

ATM, if you create a radalert (I'm not using embedded skins for this), you end up with a div that has it's classes set to class="windowpopup radalert". The standard skin/template has these definitions ...
div.radwindow_Qube .windowcontent .windowpopup.radalert { 
  background:transparent url(Window/ModalDialogAlert.gif) no-repeat scroll 8px center

What I was thinking was this. If the popup was rendered with the value of a new property, say 'MessageBoxIconClass" then the programmer could have as many different 'types' of message box as required. I envisage the property being set using a new override of the radalert call; radalert(string Message, int Width, int Height, string Title, string MessageBoxIconClass).

The popup's DIV would now be rendered thus: "class="windowpopup radalert <value_of_MessageBoxIconClass>". The programmer could then add to his/her Style CSS file as necessary ...
/* This is the default, used if there's no MessageBoxIconClass setting */ 
div.radwindow_Qube .windowcontent .windowpopup.radalert { 
  background:transparent url(Window/ModalDialogAlert.gif) no-repeat scroll 8px center
 
div.radwindow_Qube .windowcontent .windowpopup.radalert.Information { 
  background:transparent url(Window/ModalDialogInfo.gif) no-repeat scroll 8px center
 
div.radwindow_Qube .windowcontent .windowpopup.radalert.Wuff { 
  background:transparent url(Window/ModalDialogDog.gif) no-repeat scroll 8px center
 
/* etc */ 




What does the panel think? Worth looking at?

I should have thought that the development cost to telerik would be quite low for this.
Dan
Top achievements
Rank 1
 answered on 23 Dec 2008
7 answers
283 views
For the DNN RadUpload, on this page of the support site http://www.telerik.com/help/aspnet-ajax/upload_troubleshootingerrormessages.html

it says to for IIS 7 in integrated mode (which we are) to do add :

<system.webServer>
 
<modules>
. . .
     
<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="managedHandler"/>
 
</modules>
 
<handlers>
. . .
     
<add name="Telerik.RadUploadProgressHandler.ashx_*" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI" preCondition="integratedMode,runtimeVersionv2.0"/>
 
</handlers>
</
system.webServer>


When added the RadUploadModule line in the Modules section there, the application fails disasterously and gives me this run time:

Server Error in '/' Application.

Collection is read-only.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NotSupportedException: Collection is read-only.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[NotSupportedException: Collection is read-only.]
   System.Collections.Specialized.NameValueCollection.Set(String name, String value) +2241650
   System.Web.HttpHeaderCollection.SynchronizeHeader(String name, String value) +26
   System.Web.HttpRequest.SynchronizeHeader(String name, String value) +44
   System.Web.Hosting.IIS7WorkerRequest.GetHeaderChanges(HttpContext ctx, Boolean forRequest) +2506819
   System.Web.Hosting.IIS7WorkerRequest.SynchronizeVariables(HttpContext context) +2505508
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +818


Version Information: Microsoft .NET Framework Version:2.0.50727.1434; ASP.NET Version:2.0.50727.1434


What is the cause of this problem? Are these instructions incorrect?



Atanas Korchev
Telerik team
 answered on 23 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?