Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
84 views
I am using Telerik radeditor 5.6.2 and some of the icons in the editor are missing. Though its showing me the text for the icon when I hover my mouse on that but its not showing me icon.I am using it with Sharepoint 2007,AJAX 3.5 windows 2003....


MOSSlinkManager
MOSSTemplateManager
MOSSInsertTable
MOSSInsertTableElement
ToggleSource
MOSSHelp

are missing
Any suggestions would really be appreciated.

Thanks,
Stanimir
Telerik team
 answered on 26 May 2010
1 answer
90 views
<telerik:RadGrid ID="RGDataMain" runat="server" AutoGenerateColumns="False" AllowFilteringByColumn="True" AllowPaging="True" AllowSorting="True" DataSourceID="LDSDataTransaction" PagerStyle-AlwaysVisible="true" GridLines="None" Skin="Default"
            <PagerStyle AlwaysVisible="True" /> 
            <MasterTableView AllowFilteringByColumn="true" AllowPaging="true" AllowSorting="true" AutoGenerateColumns="false" EnableColumnsViewState="false"
                <Columns> 
                    <telerik:GridDateTimeColumn DataField="DatePurchased" HeaderText="DatePurchased" ItemStyle-Width="139px" FilterControlWidth="139px" DataType="System.DateTime"
                    </telerik:GridDateTimeColumn> 
                    <telerik:GridBoundColumn DataField="Title" HeaderText="Title" ShowFilterIcon="false" CurrentFilterFunction="Contains" FilterDelay="2000"
                    </telerik:GridBoundColumn> 
                    <telerik:GridBoundColumn DataField="FormatName" HeaderText="Format" ShowFilterIcon="false" CurrentFilterFunction="Contains" FilterDelay="2000"
                    </telerik:GridBoundColumn>                     
                    <telerik:GridBoundColumn DataField="RightsOrgName" HeaderText="RightsOrg" ShowFilterIcon="false" CurrentFilterFunction="Contains" FilterDelay="2000"
                    </telerik:GridBoundColumn> 
                </Columns> 
            </MasterTableView> 
        </telerik:RadGrid> 

I have use a RadGrid like this, but when you choose a datetime filter on DatePurchased field, it works right. And then you type something in Title and wait for a short time (make the filter works), the Title filtered, but the DatePurchased 's filter goes to NoFilter.
If you use Title first then DatePurchased  It will be OK too.
Any one have some ideas on this?
Shinu
Top achievements
Rank 2
 answered on 26 May 2010
1 answer
106 views
We're using the RadEditor in our SharePoint 2007 solution, it's a good editor. The editor is active as a feature on all sites and will override the standard RTF columns. However, i've found out a strange quirk:

1. When designing new columns on lists, the editor works fine & i can add the wysiwyg column type.
2. But, when designing a new column in a document library i cannot select this column type

When working with document library columns, i can select the 'multiple lines' option, but in the 'additional settings' option list i can't select any options. 

What am i doing wrong here? Is there an additional configuration to set the editor on document library columns as well? 

Regards,

Bert
Stanimir
Telerik team
 answered on 26 May 2010
1 answer
97 views
Hi all.

I just downloaded your amazing pack ASP.NET AJAX controls.

now when i wan't to update my RADGridview. nothing happens. (the update event won't fire)

I heard putting AutomaticUpdates on true could solve it , but it doesn't.

Anyone an idea what the problem is ?


Thanks in advance,

Kristof


this is my code.

     <asp:UpdatePanel UpdateMode=Conditional runat=server ID="pnlupdate"
        <ContentTemplate> 
        <telerik:RadGrid ID="RadGrid1" GridLines="None" runat="server" AllowAutomaticDeletes="True" 
            AllowAutomaticInserts="True" PageSize="10" AllowPaging="True" 
            AutoGenerateColumns="False" DataSourceID="ObjectDataSource2"
            <ClientSettings EnablePostBackOnRowClick=true
                <Scrolling AllowScroll="True" UseStaticHeaders="True" /> 
<Scrolling AllowScroll="True" UseStaticHeaders="True"></Scrolling> 
 
            </ClientSettings> 
<MasterTableView AutoGenerateColumns="False" DataKeyNames="functieID"  
                DataSourceID="ObjectDataSource2" EditMode="PopUp"
<RowIndicatorColumn> 
<HeaderStyle Width="20px"></HeaderStyle> 
</RowIndicatorColumn> 
 
<ExpandCollapseColumn> 
<HeaderStyle Width="20px"></HeaderStyle> 
</ExpandCollapseColumn> 
 
    <Columns> 
        <telerik:GridBoundColumn DataField="functieID" DataType="System.Int32"  
            HeaderText="functieID" ReadOnly="True" SortExpression="functieID"  
            UniqueName="functieID"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="functieNaam" HeaderText="functieNaam"  
            SortExpression="functieNaam" UniqueName="functieNaam"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="FunctieOmschrijving"  
            HeaderText="FunctieOmschrijving" SortExpression="FunctieOmschrijving"  
            UniqueName="FunctieOmschrijving"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="FunctieAanvrager"  
            HeaderText="FunctieAanvrager" SortExpression="FunctieAanvrager"  
            UniqueName="FunctieAanvrager"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="FunctieStatus" HeaderText="FunctieStatus"  
            SortExpression="FunctieStatus" UniqueName="FunctieStatus"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="DatumAanvraag" DataType="System.DateTime"  
            HeaderText="DatumAanvraag" SortExpression="DatumAanvraag"  
            UniqueName="DatumAanvraag"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="DatumGoedkeuring"  
            DataType="System.DateTime" HeaderText="DatumGoedkeuring"  
            SortExpression="DatumGoedkeuring" UniqueName="DatumGoedkeuring"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="DatumBeschikbaar"  
            DataType="System.DateTime" HeaderText="DatumBeschikbaar"  
            SortExpression="DatumBeschikbaar" UniqueName="DatumBeschikbaar"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="ProcentBeschikbaar" HeaderText="ProcentBeschikbaar"  
            SortExpression="ProcentBeschikbaar" UniqueName="ProcentBeschikbaar"  
            DataType="System.Double"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="FunctieNodigVanaf"  
            DataType="System.DateTime" HeaderText="FunctieNodigVanaf"  
            SortExpression="FunctieNodigVanaf" UniqueName="FunctieNodigVanaf"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="FunctieNodigTot" DataType="System.DateTime"  
            HeaderText="FunctieNodigTot" SortExpression="FunctieNodigTot"  
            UniqueName="FunctieNodigTot"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="FunctieTaak" HeaderText="FunctieTaak"  
            SortExpression="FunctieTaak" UniqueName="FunctieTaak"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="FunctieProcent" DataType="System.Double"  
            HeaderText="FunctieProcent" SortExpression="FunctieProcent"  
            UniqueName="FunctieProcent"
        </telerik:GridBoundColumn> 
        <telerik:GridBoundColumn DataField="eventID" DataType="System.Int32"  
            HeaderText="eventID" SortExpression="eventID" UniqueName="eventID"
        </telerik:GridBoundColumn> 
        <telerik:GridCheckBoxColumn DataField="Beschikbaar" DataType="System.Boolean"  
            HeaderText="Beschikbaar" SortExpression="Beschikbaar" UniqueName="Beschikbaar"
        </telerik:GridCheckBoxColumn> 
        <telerik:GridEditCommandColumn> 
        </telerik:GridEditCommandColumn> 
    </Columns> 
</MasterTableView> 
    </telerik:RadGrid> 
            <asp:ObjectDataSource ID="ObjectDataSource2" runat="server"  
                DeleteMethod="DeleteFunctie" InsertMethod="AddFunctie"  
                OldValuesParameterFormatString="original_{0}" SelectMethod="GetFuncties"  
                TypeName="FunctieBLL" UpdateMethod="UpdateFunctie"
                <DeleteParameters> 
                    <asp:Parameter Name="original_functieID" Type="Int32" /> 
                    <asp:Parameter Name="original_FunctieNaam" Type="String" /> 
                    <asp:Parameter Name="original_FunctieOmschrijving" Type="String" /> 
                    <asp:Parameter Name="original_FunctieAanvrager" Type="String" /> 
                    <asp:Parameter Name="original_FunctieStatus" Type="String" /> 
                    <asp:Parameter Name="original_DatumAanvraag" Type="DateTime" /> 
                    <asp:Parameter Name="original_DatumGoedkeuring" Type="DateTime" /> 
                    <asp:Parameter Name="original_DatumBeschikbaar" Type="DateTime" /> 
                    <asp:Parameter Name="original_ProcentBeschikbaar" Type="Single" /> 
                    <asp:Parameter Name="original_FunctieNodigVanaf" Type="DateTime" /> 
                    <asp:Parameter Name="original_FunctieNodigTot" Type="DateTime" /> 
                    <asp:Parameter Name="original_FunctieTaak" Type="String" /> 
                    <asp:Parameter Name="original_FunctieProcent" Type="Single" /> 
                    <asp:Parameter Name="original_Beschikbaar" Type="Boolean" /> 
                    <asp:Parameter Name="original_eventID" Type="Int32" /> 
                </DeleteParameters> 
                <InsertParameters> 
                    <asp:Parameter Name="FunctieNaam" Type="String" /> 
                    <asp:Parameter Name="FunctieOmschrijving" Type="String" /> 
                    <asp:Parameter Name="FunctieAanvrager" Type="String" /> 
                    <asp:Parameter Name="FunctieSatus" Type="String" /> 
                    <asp:Parameter Name="DatumAanvraag" Type="DateTime" /> 
                    <asp:Parameter Name="DatumGoedkeuring" Type="DateTime" /> 
                    <asp:Parameter Name="DatumBeschikbaar" Type="DateTime" /> 
                    <asp:Parameter Name="ProcentBeschikbaar" Type="Single" /> 
                    <asp:Parameter Name="FunctieNodigVanaf" Type="DateTime" /> 
                    <asp:Parameter Name="FunctieNodigTot" Type="DateTime" /> 
                    <asp:Parameter Name="FunctieTaak" Type="String" /> 
                    <asp:Parameter Name="FunctieProcent" Type="Single" /> 
                    <asp:Parameter Name="beschikbaar" Type="Boolean" /> 
                    <asp:Parameter Name="eventID" Type="Int32" /> 
                </InsertParameters> 
                <UpdateParameters> 
                    <asp:Parameter Name="FunctieNaam" Type="String" /> 
                    <asp:Parameter Name="FunctieOmschrijving" Type="String" /> 
                    <asp:Parameter Name="FunctieAanvrager" Type="String" /> 
                    <asp:Parameter Name="FunctieSatus" Type="String" /> 
                    <asp:Parameter Name="DatumAanvraag" Type="DateTime" /> 
                    <asp:Parameter Name="DatumGoedkeuring" Type="DateTime" /> 
                    <asp:Parameter Name="DatumBeschikbaar" Type="DateTime" /> 
                    <asp:Parameter Name="ProcentBeschikbaar" Type="Single" /> 
                    <asp:Parameter Name="FunctieNodigVanaf" Type="DateTime" /> 
                    <asp:Parameter Name="FunctieNodigTot" Type="DateTime" /> 
                    <asp:Parameter Name="FunctieTaak" Type="String" /> 
                    <asp:Parameter Name="FunctieProcent" Type="Single" /> 
                    <asp:Parameter Name="Beschikbaar" Type="Boolean" /> 
                    <asp:Parameter Name="eventID" Type="Int32" /> 
                    <asp:Parameter Name="original_FunctieNaam" Type="String" /> 
                    <asp:Parameter Name="original_FunctieOmschrijving" Type="String" /> 
                    <asp:Parameter Name="original_FunctieAanvrager" Type="String" /> 
                    <asp:Parameter Name="original_FunctieStatus" Type="String" /> 
                    <asp:Parameter Name="original_DatumAanvraag" Type="DateTime" /> 
                    <asp:Parameter Name="original_DatumGoedkeuring" Type="DateTime" /> 
                    <asp:Parameter Name="original_DatumBeschikbaar" Type="DateTime" /> 
                    <asp:Parameter Name="original_ProcentBeschikbaar" Type="Single" /> 
                    <asp:Parameter Name="original_FunctieNodigVanaf" Type="DateTime" /> 
                    <asp:Parameter Name="original_FunctieNodigTot" Type="DateTime" /> 
                    <asp:Parameter Name="original_FunctieTaak" Type="String" /> 
                    <asp:Parameter Name="original_FunctieProcent" Type="Single" /> 
                    <asp:Parameter Name="original_Beschikbaar" Type="Boolean" /> 
                    <asp:Parameter Name="original_eventID" Type="Int32" /> 
                    <asp:Parameter Name="functieID" Type="Int32" /> 
                    <asp:Parameter Name="original_functieID" Type="Int32" /> 
                </UpdateParameters> 
            </asp:ObjectDataSource> 
        </ContentTemplate> 
         
        </asp:UpdatePanel> 

Martin
Telerik team
 answered on 26 May 2010
1 answer
62 views
Hi all,

I have a page with a grid in it. I'd like to be able to add rows to it on the client side and then use radajax to post the grid in code-behind..

will the rows i add with js be available in the code-behind??

Basically i have a big form with lots of controls.. and a grid with sub grid.. when i post i need to build and entity tree from the results.. is the way i am suggesting the best way to do this?
Veli
Telerik team
 answered on 26 May 2010
5 answers
201 views
Hey,

I've got a RadSplitter with two panes, one left and one right.  The one on the right contains a RadScheduler.  There are some months in the RadScheduler that add an additional row of dates at the bottom, which increases the size it to be bigger than what is defined for my RadSplitter.  Is it possible to dynamically change the height of the Splitter to fit the size of my Pane with the RadScheduler?
Tsvetie
Telerik team
 answered on 26 May 2010
1 answer
163 views
Is there a way to set the directory that appears by default when you click "Select" on a RadAsyncUpload, or make it be the same as the last time a file was selected for upload?
Genady Sergeev
Telerik team
 answered on 26 May 2010
5 answers
111 views
I noticed an interesting phenomenon. When the page is rendered, and if I copy the chart image PNG URL to another browser on another machine, it works for a few minutes. My pages are being served over HTTPS so there is little risk someone can directly copy the URL.

I wanted to know if there is any chance this URL is guessable by third-parties, and what privacy risks there may be. I could be serving up potentially personal information in a chart and wanted to ensure there is no risk to user's data.
Ves
Telerik team
 answered on 26 May 2010
3 answers
118 views
HI all,

When I use the AllowedFileExtensions property of the RadUpload, it works fine in FF, Chrome, IE8 and Safari. However, it never validates in IE6. Please Help.

Usage:
 <telerik:RadUpload ID="fileUploadCv" runat="server" ControlObjectsVisibility="None"                             AllowedFileExtensions=".doc,.docx,.pdf,.rtf" BorderStyle="None">
</telerik:RadUpload>
<asp:CustomValidator ID="Customvalidator1" runat="server" Display="None" ClientValidationFunction="validateRadUpload1"
                                ValidationGroup="VgRegister" ErrorMessage="Invalid file type for cv"></asp:CustomValidator>


I am always getting the ErrorMessage defined in the CustomValidator.





Genady Sergeev
Telerik team
 answered on 26 May 2010
1 answer
79 views
I have a problem with the Image Manager showing the wrong image with recent versions of the library. It shows the same image for all items in the current page of the file list.

I have checked the URL of the image that the manager requests, and it's the same URL for all the images. I have single stepped through the ResolveDirectory method in the provider code, and it sends an array of FileItems that all have different URLs.

Has there been any changes in how the Image Manager uses the content provider?

There hasn't been any changes neither in the code that opens the Image Manager, nor in the content provider. The only related change is the version of the Telerik library. I made minor changes in an unrelated page (an http handler that doesn't use any Telerik components at all) and when I published the site the Image Manager stopped working correctly.

I have managed to patch the site for now with an older version of the library, hopefully that doesn't make something else act up...

Dobromir
Telerik team
 answered on 26 May 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?