Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
85 views
I think I followed the training video to the T, but I'm not able to change styles of tasks based on their resource type.

I'm using the Vista skin.  When I look at the code-behind I can tell that the styles are being called.  But they seem to be getting overridden.

I'll include some code:

Sample style:
One of the task styles -
.MeetingStyle
{
    background:CornflowerBlue;
    border:solid 1px Navy;
}

Some of the code-behind:
<div id="RadScheduler1_0_0" title="Good Friday" class="rsApt Meetingstyle" style="height:21px;width:100%;">
    <div class="rsAptOut">
        <div class="rsAptMid">
            <div class="rsAptIn">
                <div class="rsAptContent">
                    <div class="rsAptRecurrenceException">
                    </div>Good Friday<a class="rsAptDelete" href="#">delete</a>
                </div>
            </div>
        </div>
    </div>
</div>

Any ideas why I can't get the tasks to change color?


Peter
Telerik team
 answered on 13 Apr 2009
1 answer
193 views
When you mouse over the nodes in a treeview, there is a behavior that highlights each node (WebBlue) theme. What is the easiest way to have the node stay highlighted, if I am on the web page that the node corresponds to?

For example:

If I click menu option 1 on the tree view and It launches the page, is there a way to keep the node in the treeview highlighted?

Thanks in advance.
Veselin Vasilev
Telerik team
 answered on 13 Apr 2009
2 answers
173 views
I have a RadComboBox that has checkbox in it.

            <telerik:RadComboBox ID="cmbColumns" runat="server" Skin="Sunset"  Text="Show Columns" AllowCustomText="true" ToolTip="Show Columns" EnableTextSelection="false"   
                DataSourceID="ColumnsDataSource" AutoPostBack="true" EmptyMessage="Show Columns" > 
                <ItemTemplate> 
                    <asp:CheckBox ID="cbColumn" runat="server"   
                        oncheckedchanged="cbColumn_CheckedChanged" Text='<%# Eval("Column") %>'  /> 
                </ItemTemplate> 
                <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
            </telerik:RadComboBox> 

When the first Item checkbox is selected or deselected the combobox does not postback.

If any other checkboxes are selected or deselected the combobox does postback.

Any suggestions??

Also when the checkbox is rendered for the first time the Text "Show Columns" is displayed.  Once something is selected it changes to System.Data.DataRowView.  Is it possible to persist "Show Columns" no matter what is selected? 
Veselin Vasilev
Telerik team
 answered on 13 Apr 2009
1 answer
205 views
Using VS2008 and 2009 Q1 version of the controls:

Web App has a masterpage with RadScriptManager and RadAjaxManager.
UserControls have a RadAjaxManagerProxy control.
The controls are dynamically loaded into forms and divs/controls within them resized according to function.

Within the MasterPage itself, window.onresize works correctly, however within my UserControls it does not.
In testing with a barebones control (nothing on it), window.onresize would never fire, but window.parent.onresize would.
But when I add the RadAjaxManagerProxy, the window.parent.onresize is no longer received.

If I use $addHandler:
$addHandler(window, 'resize', resize); 
Then the event is fired as expected.

Tested in IE7, Safari and Chrome, all with same results.

Is this a known issue or is there a better way to handle this?
Georgi Krustev
Telerik team
 answered on 13 Apr 2009
5 answers
174 views
I am trying to deploy the RADEditor for SharePoint using the stsadm command given below. 
Command was successfully completed. However after the install my SharePoint Central Admin is not showing up. I am getting "An unexpected error has occurred."  when I try to launch Central Admin.

stsadm -o addsolution -filename RadEditorMOSS.wsp
stsadm -o deploysolution -name radeditormoss.wsp -url "http://localhost:8080/" -immediate -allowcaspolicies -allowgacdeployment -force
stsadm -o execadmsvcjobs

EventViewer does not show any error. 

I appreciate your help on this issue.

Thanks,
Praveen
Praveen
Top achievements
Rank 1
 answered on 13 Apr 2009
2 answers
139 views
I have a page with a form for options to create a chart and the chart itself on the same page. The user chooses options then clicks Generate to fill in the chart. So my problem is that when the page first renders I have it setyo to hide the chart. Then on the Generate I make it visible. The problem with the invisible approach is the LoadingPanel doesn't show up because the chart is hidden.

So I am thinking of showing the chart on first render but I need it to look nice and not show the ugly "there is no or empty series" tag in the middle, as well as showing "Chart Title" and a couple of Series names in the legend.

Is there any way to show a clean placeholder for the chart so I can utilize the loading panel when my Generate button is pressed?
Brett Robichaud
Top achievements
Rank 1
 answered on 13 Apr 2009
1 answer
152 views

I have two series and two Y axes, each with very different scales.  I would like the first series to draw on the YAxis1 scale size and the second on the YAxis2 scale.

If I choose DataYColumn2 for the second series, that series disappears.  If I just enter DataYColumn for the second series, both draw according to the YAxis1 scale, and I end up with a very tiny line and a very big line.

Any suggestions?

Thanks

 

 

 

<series>
<telerik:ChartSeries DataYColumn="Series1" Name="Series1" Type="Line" >
      <Appearance>
         <LabelAppearance Visible="False"></LabelAppearance>
      </Appearance>
</telerik:ChartSeries>
<telerik:ChartSeries DataYColumn2="Series2" Name="Series2" Type="Line">
      <
Appearance>
         <LabelAppearance Visible="False"></LabelAppearance>
      </Appearance>
   </telerik:ChartSeries>
</series>

 

 

 

 

 

 

Dessy
Telerik team
 answered on 13 Apr 2009
8 answers
138 views
I have a situation where I'd like certain controls disabled when the form 1st comes up.  The RadComboBox is coming up looking like crap.  I've included a link to a picture of what I'm talking about: Example 

I'm using the 2.8.7.0 version along with the included Vista skin.  The code to generate the 2 ComboBoxes in the picture are as following:

 

<radC:RadComboBox ID="ddlSecState" runat="server" SkinsPath="~/RadControls/ComboBox/Skins" Skin="Vista" 
    Height="200px" DropDownWidth="200px" HighlightTemplatedItems="True" Width="50px"   
    DataSourceID="sdsSecState" DataTextField="state_code" DataValueField="state_code" 
    MarkFirstMatch="True" EnableTheming="True" Enabled="false">                                                      
    <ItemTemplate> 
        <table style="width: 190px; text-align: left">  
            <tr> 
                <td style="width: 25px;">  
                    <%#DataBinder.Eval(Container.DataItem, "state_code")%> 
                </td> 
                <td style="width: 170px;">  
                    <%#DataBinder.Eval(Container.DataItem, "state_descr")%> 
                </td> 
            </tr> 
        </table> 
    </ItemTemplate> 
</radC:RadComboBox> 
 
and  
 
<radC:RadComboBox ID="ddlSecCountry" runat="server" SkinsPath="~/RadControls/ComboBox/Skins" Skin="Vista" 
    Height="200px" DropDownWidth="200px" HighlightTemplatedItems="true" Width="200px" 
    AutoPostBack="true" DataSourceID="sdsCountryList" DataTextField="country_name" 
    DataValueField="country_list_id" HideCombo="false" AllowCustomText="false" MarkFirstMatch="true" 
    SelectOnTab="false" ShowDropDownOnTextboxClick="false">  
    <ItemTemplate> 
        <table style="width: 190px; text-align: left">  
            <tr> 
                <td style="width: 100%;">  
                    <%#DataBinder.Eval(Container.DataItem, "country_name")%> 
                </td> 
            </tr> 
        </table> 
    </ItemTemplate> 
</radC:RadComboBox> 
 
 
Yana
Telerik team
 answered on 13 Apr 2009
1 answer
84 views
Hi,

I am using RadAjaxPanel for displaying the result of a buttom click. The result is working in IE7 but in the Fire Fox Mozilla it throws to the error page. As per my observation, in Mozilla the button event could not found. Please help me.
For reference I am giving the link:
http://littlewonders.in/Due-Date-Calculater/Default.aspx

Thanks
Vikram Kumar
Sebastian
Telerik team
 answered on 13 Apr 2009
2 answers
119 views
I start RadRotator
private void frmBosses_Load(object sender, EventArgs e)
        {
            blnStart = radRotator1.Start();
        }
The "Show" is begun after delay=radRotator1.Interval.

I want to sart RadRotator without delay.

How?



Fiko
Telerik team
 answered on 13 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?