Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
109 views
Hi,

I was wondering if the Scheduler has client side API to manipulate appointments. Specifically, we are thinking of modifying/creating appointments using these API on the client side and then us some sort of page method/clientside web service call to persist the changes to the backend.  If you do not have this support yet, are there plans for this kind of support?.  This approach is potentially a huge performance gain for us because this will allow us not to have to refresh scheduler each time an appointment is modified. 

Your response is appreciated.

regards,
Raj
Itai
Top achievements
Rank 2
 answered on 19 Jan 2009
2 answers
86 views

Hi my name is salih Sorry I'm bad English 

sample combobox XmlStringBinding but xml category binding 

this telerik xml 

<?xml version="1.0" encoding="utf-8" ?> 
<Items>
<Item Text="New York" Value="1" />
<Item Text="Paris" Value="2" />
<Item Text="London" Value="3" />
<Item Text="Oslo" Value="4" />
<Item Text="Sofia" Value="5" />
<Item Text="Liverpool" Value="6" />
<Item Text="Seattle" Value="7" />
<Item Text="San Francisco" Value="8" />
<Item Text="Boston" Value="9" />
<Item Text="Miami" Value="10" />
<Item Text="Denver" Value="11" />
<Item Text="Dallas" Value="12" />
<Item Text="Madrid" Value="13" />
<Item Text="Barcelona" Value="14" />
<Item Text="Amsterdam" Value="15" />
<Item Text="Moscow" Value="16" />
<Item Text="Brussels" Value="17" />
<Item Text="Bonn" Value="18" />
<Item Text="Dublin" Value="19" />
<Item Text="St.Paul" Value="20" />
<Item Text="keci" Value="21" />
<Odasayisi text="1+1" value="11"/>
</Items>

Thim I'm xml 

<?xml version="1.0" encoding="utf-8" ?>
<CarsService>
<make name="Acura">
<model name="Integra">
<color name="Green" />
<color name="Sea Green" />
<color name="Pale Green" />
</model>
<model name="RL">
<color name="Red" />
<color name="Bright Red" />
</model>
<model name="TL">
<color name="Teal" />
<color name="Dark Teal" />
</model>
</make>
<make name="Audi" value="Audi (value)">
<model name="A4" value="A4 (value)">
<color name="Azure" value="Azure (value)" />
<color name="Light Azure" value="Light Azure (value)" />
<color name="Dark Azure" value="Dark Azure (value)" />
</model>
<model name="S4" value="S4 (value)">
<color name="Silver" value="Silver (value)" />
<color name="Metallic" value="Metallic (value)" />
</model>
<model name="A6" value="A6 (value)">
<color name="Cyan" value="Cyan (value)" />
</model>
</make>
<make name="BMW" value="BMW (value)">
<model name="3 series" value="3 series (value)">
<color name="Blue" value="Blue (value)" />
<color name="Sky Blue" value="Sky Blue (value)" />
<color name="Racing Blue" value="Racing Blue (value)" />
</model>
<model name="5 series" value="5 series (value)">
<color name="Yellow" value="Yellow (value)" />
<color name="Banana" value="Banana (value)" />
</model>
<model name="7 series" value="7 series (value)">
<color name="Brown" value="Brown (value)" />
</model>
</make>
</CarsService>


I'm Not Combobox Binding Erorr 

Combobox1 add    <model name="5 series" value="5 series (value)">

combobox2 add  <color name="Yellow" value="Yellow (value)" />

help me please




salih
Top achievements
Rank 1
 answered on 19 Jan 2009
1 answer
144 views
Hi,

After the 'SelectedIndexChanged' event has fired, I want to examine the selected item.
However, the [RadGrid].SelectedItems.Count = 0...

Any suggestions?

Sean Duffy
Princy
Top achievements
Rank 2
 answered on 19 Jan 2009
1 answer
136 views
Hi Team,
    I have a table with 14 columns . I want to display that table's data in a heirachical way , by using Tree View control . Can you guide me how can I able to do this .
    I have implemented On Demand Loading . So there is no problem for me . When the page is loading , at that time I am taking first two column data and binding to the tree view control ( 1st column as node value and 2nd column as node text ). When user will expand the node I will pass the node value , and get the data from table for the next two column , and so on.
    I needed the above mentioned thing, becuase I have a button called search button  and when I will hit that button it will search in the entiere table and display all the data in the tree view control.

Regards
Manoj
Manoj
Top achievements
Rank 1
 answered on 19 Jan 2009
1 answer
90 views
Hi All,
I have come up with a javascript error in the Scheduler, in Month view, Readonly.
My definition is :
<telerik:RadScheduler ID="RadScheduler1" runat="server" AllowDelete="False"   
        AllowEdit="False" AllowInsert="False" Culture="English (Australia)"   
        EnableRecurrenceSupport="False" EnableResourceEditing="False"   
        FirstDayOfWeek="Monday" HoursPanelTimeFormat="htt" LastDayOfWeek="Sunday"   
        OverflowBehavior="Expand" ProviderName="XmlSchedulerProvider1"   
        SelectedView="MonthView" ShowViewTabs="False" Skin="Inox" style="top: 0px; left: 0px; height: 307px"   
        ValidationGroup="RadScheduler1">  
        <MonthView GroupBy="Room" GroupingDirection="Vertical" ReadOnly="True"   
            UserSelectable="False" /> 
    </telerik:RadScheduler> 
The error appears when you select a group of days with the mouse (looks like just hightlighting text in html), but when you do "mouseup", I get the error :
Microsoft JScript runtime error: 'undefined' is null or not an object

at

var _12=_11._getRawIndexFromDomElement(_a);


Coming from the webresource.axd.

Any tips on this?
Thanks,
Steele.
Peter
Telerik team
 answered on 19 Jan 2009
1 answer
101 views
I have a very small app. running on Windows Home Server. I am getting a dailog error opening any dialog box... Images, media etc.

Wondering if anyone has any idea what is the usual cause of this???

Thanks...

Screen shot of error 
Rumen
Telerik team
 answered on 19 Jan 2009
3 answers
135 views
I have the following function to populate a grid. The select info returns a DataTable with the data. Everything works fine until I try to sort. I click the first time and the sort works fine. If I click the column again, nothing happens. I have the NeedDataSource event enabled, with the following code (rgData.MasterTableView.DataSource= SelectInfo();)  Looks like the grid is keeping a cache of the data, because the function returns the data sorted correctly, but the grid keeps the display wrong

Bind data function
function InitGrid()
{
rgData.MasterTableView.DataSource= SelectInfo();
 rgData.DataBind();
}

Sort Event
if (!e.Item.OwnerTableView.SortExpressions.ContainsExpression(e.SortExpression))
  {
/*controls used for function to define sorting order*/
   txtHSortOrder.Value = "A";
   txtHSortBy.Value = e.SortExpression;
   e.Item.OwnerTableView.SortExpressions.AddSortExpression(e.SortExpression);
  }
  else
  {
   txtHSortOrder.Value = "D";
  }
Georgi Krustev
Telerik team
 answered on 19 Jan 2009
1 answer
116 views
I don't want to use RadScheduler1_AppointmentCreated because it is not about existing appointment records. I have an SQL table that dictates, for a given resource, what days of the week and hours of a given day our users are allowed to create appointments. I want to be able to disable a cell with code-behind. The change of backcolor for a give cell will give our users a visual representation of the resource's availability. Thanks in advance for your help.
Peter
Telerik team
 answered on 19 Jan 2009
3 answers
151 views
I have a very strange problem, I have a RadGrid control that usues a  generic List<MyObject> as datasource, when the list contains records Insert commands fires fine, and displays insert form , but when the list is empty (Count=0), and grid.DataSource is therefore empty, Insert command will not fire, and will just refresh the page entering only Page_Load.
Anton
Top achievements
Rank 1
 answered on 19 Jan 2009
1 answer
44 views
Hello,

In scheduler dayview, while stretching an appointment, currently it takes minimum 30 minutes gap between start and end. I have a scenario where I need to allow the user to stretch it in a way to force this gap as zero seconds and make its start and end equal. In our case, it is different than deleting an appointment.

Is it possible to implement this solution in present scheduler & how?

Thanks,
Shailaja
Peter
Telerik team
 answered on 19 Jan 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?