Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
492 views
I am designing a date time control using the raddatepicker.  I want Sundays to be highlighted a different color than saturday, we are open on saturdays and closed on sundays.  so mondays thru saturday (excluding holidays or special days) should be the same back ground color.

I've tried both the client and server side (OnDayRender) to control this but its too inconsistent.

What can i do differently?  Attached is the vb and javascript i am using.

Tim Martin
Car Research
             <script type="text/javascript">
                 function OnDayRender(calendarInstance, args) {
6) and Sunday (day = 0))
                                        
                     var jsDate = new Date(args.get_date()[0], args.get_date()[1] - 1, args.get_date()[2]);
                     if (jsDate.getDay() == 0) {
                         var otherMonthCssClass = "CalendarDisabled";
                         args.get_cell().className = otherMonthCssClass;
 
                         args.get_cell().innerHTML = "<span>" + args.get_date()[2] + "</span>";
 
 
                         args.get_cell().DayId = "";
                     } else {
                         var otherMonthCssClass = "CalendarEnabled";
                         args.get_cell().className = otherMonthCssClass;
 
                         args.get_cell().innerHTML = "<span>" + args.get_date()[2] + "</span>";
                     }
                 }
            </script>


Protected Sub Calendar_OnDayRender(ByVal sender As Object, ByVal e As Telerik.Web.UI.Calendar.DayRenderEventArgs)
    Dim specialday As New RadCalendarDay
 
    If e.Day.Date.DayOfWeek = DayOfWeek.Sunday Then
        specialday.Date = e.Day.Date
        specialday.IsSelectable = False
        specialday.ToolTip = "Closed"
        specialday.ItemStyle.CssClass = "CalendarDisabled"
        With rdpDatePicker
            .Calendar.SpecialDays.Add(specialday)
        End With
    ElseIf e.Day.Date.DayOfWeek = DayOfWeek.Saturday Then
        specialday.Date = e.Day.Date
        specialday.IsSelectable = True
        specialday.ItemStyle.CssClass = "CalendarEnabled"
        With rdpDatePicker
            .Calendar.SpecialDays.Add(specialday)
        End With
 
    End If
End Sub

Tsvetina
Telerik team
 answered on 24 Nov 2010
2 answers
45 views
Hi,

Is there a way to trigger a postback from the OnClientNodeExpanding and OnClientNodeCollapsing? The reason is i have 5000 of nodes and had to check for childnodes for every nodes.

Thanks!
jing
Top achievements
Rank 1
 answered on 24 Nov 2010
1 answer
74 views
Hello,

I have a radgrid with different colors for alternating rows (gray and white) and the selected row is yellow. Only one row can be selected at a time.

<AlternatingItemStyle BackColor="GhostWhite" />
<ItemStyle BackColor="LightGray" />
<SelectedItemStyle BackColor="Lightyellow" />

When I select a row its backcolor becomes yellow. When i select another row, the previous selection loses all its color. how do i retain the LightGray and GhostWhite color on deselecting a row.

Thanks!
Shinu
Top achievements
Rank 2
 answered on 24 Nov 2010
4 answers
72 views
Hello,

I have been using TeleGrid Ajax Grid ...

When I drag & drop a column, column header's position is not changed ... but data in the cells in other rows were appropriately moved

Any workaround?

Thank you

Regards
Raj
Rajz
Top achievements
Rank 1
 answered on 24 Nov 2010
1 answer
46 views
hi guys

i 'm facing problem in grid .
i have one column called name that contain like
'*Security: Authentication policy change'
but when i searching starts with   * ,it display all record

please help me.
Tsvetoslav
Telerik team
 answered on 24 Nov 2010
3 answers
56 views

Hello,
I have one ajaxified radgrid which is getting ajaxified through RadAjaxManager.Outside the grid I have two asp buttons.On pageload I am adding ajaxsettings for those buttons.On grid inline edit I am trying to disable those buttons.Those buttons are getting disabled.But I am getting null object exception on clicking the button.If I remove the ajaxsettings from pageload everything works fine but the buttons are not getting disabled.Please suggest me at your earliest...Below are the code in page_load.



 

protected void Page_Load(object sender, EventArgs e)

 

{

 

  RadAjaxMgriPur.AjaxSettings.AddAjaxSetting(RGridImportedData, btnCreateOrder,

null);

 

 

 

  RadAjaxMgriPur.AjaxSettings.AddAjaxSetting(btnCreateOrder, RGridImportedData, RadAjaxLoadingPaneliPur);

 

}


 

 

protected void btnCreateOrder_Click(object sender, EventArgs e)

 

{
     //some operations....
   

 

RGridImportedData.Rebind();

 

}

Thanks in advance.

Manaswinee

Radoslav
Telerik team
 answered on 24 Nov 2010
1 answer
84 views
Hi,

I am using a microsoft ajax tab container to display the tabs. I have six tabs inside that container. In each tab, I have a radgrid. The columns for the radgrid are built dynamically. I am loading the data for all the grids during page load. I have a javascript function to adjust the grid height and width. I included this javascript function in the gridcreated event. So, when the tab loads the grid is firing that javascript. But I am not able to get the mastertableview height. The height is returned as zero. I tried using the page_init event to load the grids but it still has the same problem (the height is returned as zero). Is there something that I am missing?

function AutoSize(sender, args)
{
       var dataHeight = sender.get_masterTableView().get_element().clientHeight;
}
Radoslav
Telerik team
 answered on 24 Nov 2010
1 answer
91 views
I'm working on a website that will eventually be deployed to a production Azure server. On one page I'm using a repeater that binding a record that contains an image stored in a varbinary field. I located an article that provides an example on how to use the RadBinaryImage control iin a repeater:

http://www.telerik.com/help/aspnet-ajax/radbinaryimage.html

At the bottom of the page it states "RadBinaryImage doesn't work in WebFarm / WebGarden scenarios". Does this mean I can't use the RadBinaryImage control on an Azure hosted website?
Veli
Telerik team
 answered on 24 Nov 2010
1 answer
79 views
Hi,


I have a webserive who returns two fileds INCOME & EXPENDITURE as output.

I am trying to plot line chart programitically on page load, which has 2 series (ChartSeriesType.Line), & wanted to bind the output of webservice to both the  series.

series1--->INCOME
series2--->EXPENDITURE

Note: Both series are Line type.
I am able to bind with bar chart but not able to  bind with LINE graph dynamically.

In the Telerik example, they are binding the with hardcoded data.


Thanks in advance,

 
Vladimir Milev
Telerik team
 answered on 24 Nov 2010
3 answers
84 views
Hi. Would anybody know why I am getting an error when I try to access the property builder for a RadGrid. It did work fine but doesn't work now. I have deleted the old page and tried to start from scratch with a new form (based on a master page). I create the new form, add the RadGrid, use the smart tag to create an sqldatasource and then click "open property builder". I get the visual studio error:

"Error invoking 'Open Property Builder'. Details:
Exception has been thrown by the target of an invocation."
Martin
Telerik team
 answered on 24 Nov 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?