Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
158 views
Hi,

i´m devoloping a webpart for sharepoint 2010 and i´m having some problems with the scheduler . For example when i´m trying to edit the webpart properties the menu appears behind the calendar, so i can´t click on it, also when clicking on the header to display the calendar it doesn´t show completely it just display a few days. This also happens when i try to edit or create a new appointment.

Hope there is an easy way to fix it, 
Thanks

Alberto
Top achievements
Rank 1
 answered on 01 Sep 2010
1 answer
128 views
Hi,
Is there are property to allow multiselection in a Panelbar and its items like:

SelectionMode="Multiple" in RadList to select multiple items. 
Thansk 
 

 

Princy
Top achievements
Rank 2
 answered on 01 Sep 2010
1 answer
258 views
Hi

I am using the RadAsyncUpload and setting AllowedFileExtensions to ".mp3". However, in the file selection dialog it still shows all files (*.*).

I realize that that RadUpload is limited by the capabilities of <input type='file'>. Fortunately, RadAsyncUpload uses Flash and should not suffer from this limitation.

Is something I can do to enable this? If not can I please request it be added as a feature in future versions?

Thanks,
Jeff Paetkau
Yana
Telerik team
 answered on 01 Sep 2010
1 answer
118 views
Hi,

can we get the events and recurrence events through SQL Strored procedure
by passing start and end date and time .

if yes how can we check the rule through stored procude.

Regards
Shashi....

Peter
Telerik team
 answered on 01 Sep 2010
8 answers
139 views

            <telerik:radformdecorator id="FormDecorator1" runat="server" decoratedcontrols="CheckBoxes, RadioButtons, Buttons"  /> 
 
            <telerik:RadListBox  
                runat="server" ID="dlUsers" TransferToID="dlUsersAssign" 
                AllowTransfer="true"  AllowDelete="false" AllowReorder="false" AllowTransferDuplicates="false" 
                ButtonSettings-ShowTransferAll = "true" 
                TransferMode="Copy" SelectionMode="Multiple"   
                Width = "250px" Height = "110px" Skin="WebBlue">  
                   
                <Items> 
                    <telerik:RadListBoxItem Text="User1" Value="0" /> 
                    <telerik:RadListBoxItem Text="User2" Value="1" /> 
                    <telerik:RadListBoxItem Text="User3" Value="2" /> 
                    <telerik:RadListBoxItem Text="User4" Value="3" /> 
                </Items> 
                    
            </telerik:RadListBox> 
 
            <telerik:RadListBox  
                runat="server" ID="dlUsersAssign"    
                Width = "250px" Height = "110px" CheckBoxes="true"  > 
                <Items> 
                    <telerik:RadListBoxItem Text="User6" Value="6" /> 
                    <telerik:RadListBoxItem Text="User7" Value="7" /> 
                </Items> 
            </telerik:RadListBox> 
 
In initial state FormDecorator is applied to checkboxes in the left box, it's ok.
Now let's move some items from right box to left box.
FormDecorator will not be applied to new added items in the left box.
spt
Top achievements
Rank 1
 answered on 01 Sep 2010
1 answer
166 views
Hi Team,

While Saving Rad Editor Content as RTF It was not coming the same format what i have given in Rad Editor Content.
Alignment and other things are not coming Correctly.
Even i tried to do this as in Telerik site like save as rtf Format are changing.
Even Question mark Symbol is coming where ever Space have.

Please see the attached the file for Reference.

In the Sample.Png Image have content Type.
In the Sample1.Png Image i'm Pasting the content into the Tererik rad Editor export/import Rtf.
in the Sample2.Png Imgae after saving to export to rtf i'm getting like.

please give me the Solution as soon as poosible.

Regards,
Ashok Anbarasu
Dobromir
Telerik team
 answered on 01 Sep 2010
1 answer
104 views
the radeditor for MOSS doesnot support script tags.
    when i use script tags in radeditor it is removed, how can i use javascripts in radeditor
Stanimir
Telerik team
 answered on 01 Sep 2010
2 answers
288 views

I try to use the GridMaskcolumn, RadNumericTextBox1 and RadMaskedTextBox

Why are the controls not the same:
- I was hoping the GridMaskedColumn en the RadMaskedTextBox  are the same with the parameters. e.g. DisplayMask
- Is it possible that when I use then Mask that when I press , (comma) or . (point) the cursor is moving to behind the decimal?
I have to move the cursor by mouse or cursorkeys.
- Why make different controls with the same purpose.
Can you make one control say: RadTextBox and make it with Mask, Numeric, Date what ever you want.

I don't know where to put the suggestions so i placed them in the forum.

<telerik:GridTemplateColumn HeaderText="Korting" SortExpression="oplgl_korting" UniqueName="oplgl_kortingTemp">
<ItemStyle HorizontalAlign="Left"></ItemStyle>
<ItemTemplate>
<%#Format(Eval("oplgl_korting"), "##0.00")%>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadNumericTextBox ID="RadNumericTextBox1" runat="server" DataType="System.Decimal"
MaxLength="6" Font-Size="10px" MaxValue="999.99" MinValue="0" Type="Number" NumberFormat-DecimalDigits="2"
DbValue='<%# Bind("oplgl_korting") %>' />
<telerik:RadMaskedTextBox ID="RadMaskedTextBox1" runat="server"
DisplayMask="###,##"
Mask="###,##"
NumericRangeAlign="Left"
DisplayFormatPosition="Right"
DisplayPromptChar="_" Text='<%# Bind("oplgl_korting") %>'
>
</telerik:RadMaskedTextBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>
Robert Koerse
Top achievements
Rank 1
 answered on 01 Sep 2010
1 answer
111 views
When the theme is selected as black ....The message in the radalert is not visible since the  forecolor of the Radalert also turns black.How to fix this ?
Shinu
Top achievements
Rank 2
 answered on 01 Sep 2010
3 answers
158 views
Hi,

I am trying to track clientside expanding/collapsing as ClientOperations, for example:

function OnClientItemExpand(sender, args) {
    var panel = sender;
    var item = args.get_item();
 
    if (item && panel) {
        panel.trackChanges();
        item.expand();
        panel.commitChanges();
    }
    else {
        alert("item or panel is null");
    }
}

Unfortunately expand and collapse don't seem to be tracked by the trackChanges() function. Therefore after a postback the serverside collection RadPanelBar.ClientChanges is empty. My example works fine if I use disable() or other functions instead of expand().

Is there any way to track expand/collapse as well? Can I somehow add custom changes to the ClientChanges collection from JS?
My goal is simply to see clientside changes in the expand/collapse state after a postback on the serverside, too.

Thanks in advance!
Nikolay Tsenkov
Telerik team
 answered on 01 Sep 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?