Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
90 views
Some of my pages have validators and I am gettting the following javascript error;

function () {Array.remove(Page_ValidationSummaries, document.getElementById("ctl00_MainPage_MainForm_ValidateAll"));}(function () { function loadHandler() {var hf = $get("ctl00_RadStyleSheetManager1_TSSM");if (!hf._RSSM_init) {hf._RSSM_init = true;hf.value = "";}hf.value += ";Engica.Q4.Web.UI.CSS:en-GB:b0bdc9a5-2c35-405c-b20a-d752aaf5c19a:14eb65bf;Telerik.Web.UI, Version=2010.2.922.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4:en-GB:0dc0fb55-040f-41fa-92b4-f26e54390f18:ed2942d4:f82ffad1:53e1db5a:8f70baae:c17ca3a3:1f65231b:7f7626a2:1c2121e:e24b8e95:5951aeec:38820e2e";Sys.Application.remove_load(loadHandler);} Sys.Application.add_load(loadHandler);}) is not a function

In the source

document.getElementById('ctl00_MainPage_MainForm_ValidateAll').dispose = function() {
    Array.remove(Page_ValidationSummaries, document.getElementById('ctl00_MainPage_MainForm_ValidateAll'));
}
(function() {
                        function loadHandler() {
                            var hf = $get('ctl00_RadStyleSheetManager1_TSSM');
                            if...elided



Help!
These are old pages we haven't touched for a long time :( other pages seem fine 


Martin Sarosi
Top achievements
Rank 2
 answered on 04 Oct 2010
1 answer
124 views
hello i need help with grid exporting
i want to export a selected row   ,i have a button template column for export but not working for the current row
in addition i would like to choose the column that i wish to export
thanks for any help or suggestion
Princy
Top achievements
Rank 2
 answered on 04 Oct 2010
1 answer
86 views
Hi,

We are using RadEditor v. 2010.1.519.35.  We have changed the background and default font for the Design tab by setting a value for the Editor Css file as follows
<telerik:radeditor runat="server" SkinId="PerfOptimizedRadEditor" NewLineBr="false" ToolsFile="~/XMLConfigFiles/RadEditorToolsFile.xml" EditModes="Design,Html,Preview" 
    StripFormattingOnPaste="None" StripFormattingOptions="None" ToolbarMode="Default" Skin="WebBlue" 
    SpellCheckSettings-SpellCheckProvider="EditDistanceProvider" SpellCheckSettings-EditDistance="1" 
    SpellCheckSettings-AllowAddCustom="false"  SpellCheckSettings-DictionaryPath="~/MSFS/Content/RadSpellDictionaries"
    ContentFilters = "RemoveScripts,FixUlBoldItalic,FixEnclosingP,IECleanAnchors,MozEmStrong,ConvertFontToSpan,ConvertToXhtml,IndentHTMLContent"  >
    <CssFiles>
        <telerik:EditorCssFile Value="~/Stylesheets/RadEditorApplyStylesSelector.css" />
    </CssFiles>
</telerik:radeditor>

and then in the stylesheet (in this case named RadEditorApplyStylesSelector.css), setting the following style for the body:
body
{
    font-size: 9pt;
    font-family:Verdana,serif;
    font-weight: normal;
    background-color:#FFFFE4;
}

This works great and the display of the content in the Design tab is modifed to reflect the css style.  However, the display of the content in the HTML tab does not change.  It is still displayed using the default css styles.

How do we change the display of the RadEditor content that appears in the HTML tab?

Thanks for the help!
Rumen
Telerik team
 answered on 04 Oct 2010
1 answer
91 views
I have a grid with filtering. I'm using my owm style based on Office2007.

Everything looks and works fine until I hit the filter options button, when the options pop up (these are limited to the 5 shown) they have no style, as per the attached image.

I have copied the ButtonSprite.gif image to the Grid Folder and changed the reference in the CSS.

What an I missing?

Andy
Dimo
Telerik team
 answered on 04 Oct 2010
1 answer
40 views
Hi.

The "Whats New" list for the just released Q2 2010 SP2 controls says...

"Added: selectItems/unselectItems and checkItems/uncheckItems methods for quick selection(unselection)/check(uncheck) of multiple items" for the RadListBox yet I can't seem to find or access these methods.

I've tried some of my own guesses such as...

                var lb = $find("<%= myListBox.ClientID %>");
                lb.checkItems();

and other variations but no luck.

I used a .net analysis tool to browse all elements lf the Telerik.Web.UI.RadListBox namespace and I can't seem to find any new methods such as these.

Please let me know what you think and if I'm doing something wrong.

Thank you.

Nikolay Tsenkov
Telerik team
 answered on 04 Oct 2010
0 answers
47 views
Hi,

     I am new in Rad chart control how can bind the values in Dynamic way (Code behind).
Please Help me.


Regards,
Tamilselvan.S
Tamilselvan
Top achievements
Rank 1
 asked on 04 Oct 2010
7 answers
110 views
Hi,

Can we do googlelike filtering on dataset. In the example you guys are doing filtering in sql query ( IN list_ItemsRequested Method). I ma using stored procedure to get the data. So i cant use stored procedure. So is there any way to do filtering on dataset. If yes how to do it. Please Let me know.

Thanks.
Iana Tsolova
Telerik team
 answered on 04 Oct 2010
1 answer
91 views
Is it possible to show an expanded MonthView to show 6 or more weeks at a time, such as a view displaying dates from 8/15/2010 - 10/9/2010? I don't see much use for this but it was a request from one of my clients. Thanks.
Veronica
Telerik team
 answered on 04 Oct 2010
6 answers
211 views
From the content page we open a radwindow in which we have a radGrid. OnRowDoubleclick of that radGrid we have a function which makes an Ajax call to the server side through the RadAjax manager. Now in the function onAjaxRequest end we have code to close the opened RadWindow. which is giving me this error.

function CloseRadWindow()
            {
                var oManager = parent.GetRadWindowManager();                     
                var oWnd = oManager.getActiveWindow();
                if (oWnd != null)
                {                    
                    oWnd.close();                    
                }
                return false;
            }

RadWindowManager is present on the parent page.

This code works fine (closes the radWindow if we do not make any AjaxRequest to searver side).
Do we have any work around to fix this Issue?
Georgi Tunev
Telerik team
 answered on 04 Oct 2010
3 answers
122 views
Hi Team,
                   I'm using Rad Grid. I want to create Link buttons in RadGrid on alternate columns. I'm not using ItemTemplate. I'm just giving DataSource of RadGrid is DataTable. 

Please help me on this... We need the solution urgently... plz plz help me soon....


My desired output need to be like below. and i need to fire a event hander whenever i click on the link buttons
the I need to Assign the FormatString dynamically to all the Columns like below...

My Requirements:
1) when ever i click the Name column: then the (Header_Click) event handler has to fired. 
2) when ever i click Salary column Link button then (Linkbutton_Click) 
event handler has to fired.
3) I need to assign my custom Format String to all the columns
Example for 3rd Requirement
we are giving Input  like below:
Data                  : 15000
Format String    : $##,##,###.00

we need the Output like below:
$15,000.00

Name

2007

2007

2007

2008

2008

2008

2009

2009

2009

 

Salary

PF

HRA

Salary

PF

HRA

Salary

PF

HRA

 

Alexis

$5000

5%

10

$6000

6%

15

$7000

7%

20

 

Michael

$4000

 

4%

80

$4500

 

4.5%

10

$5500

 

5.5%

15

 

Smith

$3000

 

3%

50

$4000

 

4%

10

$5000

 

5%

15

 

Jessica

$4500

4.5%

10

$5500

5.5%

15

$6500

6.5%

18

 

 

 

 

 








Thanks in advance
Alexis
Martin
Telerik team
 answered on 04 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?