Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
151 views
I have three textboxes and one telerik editor. i am performing the spell check (using client side javascript)for all the three textboxes and editor, but some how i am unable to  perform spell check for editor which is not supporting javascript spell check( i performed  spell check as per example which you given in the demo examples). i am using 2008 version telerik. can u let me know solution for this very urgent.
vikram
Top achievements
Rank 1
 answered on 24 Nov 2008
3 answers
108 views
Hi All,

how can I hide the DetailTables for some rows(not for all rows) in the MasterTableView depend on condition at runtime??????

Please  help me ASAP

thnks in advance
ghadeer
Daniel
Telerik team
 answered on 24 Nov 2008
1 answer
69 views
Hi ,
     Can Somebody help me...I am hyperlink when I click on the link it will open a POP upwindow and the problem is while opening the Rad popup window the Slider of RadGrid which is presented in the Parent form overlapping with the pop up window...
I have no problem while viewing in IExplorer.The problem occurs only in Firefox..

Thanks and Regards
N.Nallamani
Tsvetie
Telerik team
 answered on 24 Nov 2008
1 answer
95 views
I am having an issue with an extension for a class.  It is almost like it is being ignored.  Anyways I have the code:

<class name="Filing">
            <extension key="db-table-name" value="'FILINGS'" />
</class>

and it is still using Filing in all of my statements and I am not sure why.  I noticed I am having issues with other extension entries for my classes getting ignored as well.  I was wondering if anyone else has had this problem and if so how to resolve it.  I just started getting this issue when I recently upgraded to the new telerik.openaccess update.  If you need any additional information from in order to resolve this, please just let me know.  Thanks.
Jan Blessenohl
Telerik team
 answered on 24 Nov 2008
3 answers
178 views
HI

I am using radgrid 5.1.2. I can't upgrade to the latest version as you have stopped supporting the skins we use. The radgrid skin is not showing, presumably because the radgrid is contained in an update panel and is not initially visible - it is only displayed after the first postback. Please can you advice how i fix the skin problem

thanks
Dimo
Telerik team
 answered on 24 Nov 2008
3 answers
203 views
I was wondering why the enter key is not being included in the get_text().trim().length when I press enter. Only when I type in another key (alphabets) is the enter key being taken into account.
I am trapping the onkeyup and trying to update the text count.

        function GetDraggableTextLength()
        {
            var rtfEditor = $find("<%=popupWin_txtValue.ClientID %>");
            return rtfEditor.get_text().trim().length;
        }

        function HandleKeyUp()
        {
            var latestCharCount = GetDraggableTextLength();

My QA is complaining, they press a lot of enter, they don't see the length and all of a sudden, when they press a all of a sudden they reached the maximum text length.

Thanks
Tervel
Telerik team
 answered on 24 Nov 2008
4 answers
116 views
How can you expand all the nodes in a tree when they are built from a web service
Veselin Vasilev
Telerik team
 answered on 24 Nov 2008
1 answer
167 views
am developing a website that needs to display a disclaimer the first time the user enter the page. if the user agree on the disclaimer it will continue to display the page other wise it will redirect to another page.

no click needed to show the disclamer.

is this possible using radconfirm ?

how?
Princy
Top achievements
Rank 2
 answered on 24 Nov 2008
1 answer
135 views
heya.
Trying to achieve a couple things.
Load up radwindow and display details (check)
'notes' field textbox and button in radwindow (check)
button click events set as so... 

 

<asp:Button ID="btnCancel" OnClick="btnCancel_Click" OnClientClick="CloseWindow(); return false;" runat="server" Text="Cancel" />
problem is that the page is closing before the data update is taking place..
Also... I would prefer if i could get the grid that launched the radwindow via gridItemTemplate to rebind.. otherwise rebind the whole page.
code below
Parent aspx code:

 

 

 

function cancelPost(recordid)  
 
{  
 
var oWnd = radopen("Ctrls/Leaders/cancelposting.aspx?RecordID=" +recordid, "RadWindow2" );  
 
oWnd.center();  
 
oWnd.add_close(OnClientClose);  
 
}  
 
 
function OnClientClose(oWnd)  
 
{  
 
var order = document.getElementById("order");  
 
order.innerHTML = "<strong> Cancellation request went through.</strong>";  
 
}  
 
 
 

 

<a href="#" onclick="cancelPost('<%# DataBinder.Eval(Container.DataItem, "RecordID") %>'); return false;">Cancel</a>

 

 

Radwindow relevant Code

<script type="text/javascript">  
 
function GetRadWindow()  
 
{  
 
var oWindow = null;  
 
if (window.radWindow) oWindow = window.radWindow;  
 
else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;  
 
return oWindow;  
 
}  
 
 
function CloseWindow()  
 
{  
 
var Ownd = GetRadWindow();  
 
//var oArg = new Object();  
 
//Ownd.argument = oArg;  
 
Ownd.close();  
 
}  
 
</script>  
 
                     <a href="#" onclick="cancelPost('<%# DataBinder.Eval(Container.DataItem, "RecordID") %>'); return false;">Cancel</a>    
 
Svetlina Anati
Telerik team
 answered on 24 Nov 2008
3 answers
81 views
Hi team telerik

When I'm moving the scroll bar left to right, and then I move the scroll bar  right to left, the scroll bar dont'n  work.

My version of controls is asp.net ajax 2008 q1

Code:
<telerik:RadGrid ID="rgdPresupuesto" runat="server" 
                                GridLines="None" AllowPaging="True"  
                                AllowCustomPaging="True"  Width="99%"  
                                Skin="Office2007" AutoGenerateColumns="False"  
                                onitemdatabound="rgdPresupuesto_ItemDataBound"  
                                onneeddatasource="rgdPresupuesto_NeedDataSource" > 
                                <ClientSettings AllowExpandCollapse="true" > 
                                    <Scrolling UseStaticHeaders="true" FrozenColumnsCount="1" AllowScroll="true"  
                                        ScrollHeight=""  /> 
                                </ClientSettings> 
                                <MasterTableView  > 
                                    <Columns> 
                                        <telerik:GridBoundColumn  DataField="Descripcion" HeaderText="Presupuesto por Mes" > 
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Enero" HeaderText="Enero"></telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Febrero" HeaderText="Febrero"
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Marzo" HeaderText="Marzo"
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Abril"
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Mayo" HeaderText="Mayo">                                        </telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Junio" HeaderText="Junio" > 
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Julio" HeaderText="Julio" > 
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Agosto" HeaderText="Agosto" > 
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Septiembre" HeaderText="Septiembre" > 
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Octubre"  HeaderText="Octubre" > 
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Noviembre"  HeaderText="Noviembre" >  
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Diciembre" HeaderText="Diciembre"
</telerik:GridBoundColumn> 
<telerik:GridBoundColumn DataField="Total" HeaderText="Total" > 
</telerik:GridBoundColumn> 
                                    </Columns> 
                                </MasterTableView>           
                                <PagerStyle Mode="NextPrevAndNumeric" /> 
                            </telerik:RadGrid> 

thank's team telerik.
Sebastian
Telerik team
 answered on 24 Nov 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?