Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
231 views

asp:checkbox are find control in javascript ,
how i achieve this

Thanks Advance,
New Gene.
Princy
Top achievements
Rank 2
 answered on 27 Jun 2012
1 answer
174 views
Hello  all ,

how can i create a breadcrumbs for RadTreeView (using telerik asp.net ajax) ???

thanks in advance
Princy
Top achievements
Rank 2
 answered on 27 Jun 2012
1 answer
128 views

See the image ,
i assign the value from choose content list ,
after assign cursor go right side

Regards,
Mohamed.
Rumen
Telerik team
 answered on 27 Jun 2012
1 answer
427 views
I'm looking for a way to use RadWindow as a MessageBox/Modal popup. Basically I need to send a message to the Window from any of the pages in the application and display the message.  

Example: DisplayMessage("123 records have been successfully updated.")

Appreciate if you can share code sample!!


Princy
Top achievements
Rank 2
 answered on 27 Jun 2012
3 answers
242 views
Can RadGrid be used for a spreadsheet style document that works similar to how the Google Docs spreadsheet work?  The way that google docs scrolls, allows for a large number of rows in the sheet, allows a user to add a new column, and also allows copy/paste between cells are the primary features I want on my web page.

I found the example for the ExcelLikeGrid but it is pretty basic and I am not sure if it would work very well when I have 100K+ rows on the spread sheet.  Are there any other examples like that out there?  Does anyone know a more appropriate web control that I could use?

joe
Shinu
Top achievements
Rank 2
 answered on 27 Jun 2012
0 answers
65 views
Hello everyone!

This is my problem! I've created a telerik radgrid inside a modalpopupextender, but the buttons got messed up!

Here's the code!


<div style="margin-left: 15px; margin-right: 15px;">
                       <telerik:RadGrid ID="dgConsultaSegurado" runat="server" AutoGenerateColumns="false" Skin="Default" AllowPaging="true" PagerStyle-Mode="NextPrev" OnPageIndexChanged="rgGridSegurado_PageIndexChanged"
                       AllowFilteringByColumn="false" AllowSorting="false" AllowAutomaticDeletes="false" AllowAutomaticInserts="false" AllowAutomaticUpdates="false" Culture="pt-BR"
                       OnItemCommand="dgConsultaSegurado_OnItemCommand" HeaderStyle-Height="20" OnItemDataBound="dgConsultaTomador_OnItemDataBound">
                       <ClientSettings EnablePostBackOnRowClick="true">
                        </ClientSettings>
                       <MasterTableView >
                       <HeaderStyle VerticalAlign="Middle" HorizontalAlign="Center" Height="20" />
                       <ItemStyle VerticalAlign="Middle" HorizontalAlign="Center" CssClass="linhasGridPrincipalSegurado"/>
                       <AlternatingItemStyle VerticalAlign="Middle" HorizontalAlign="Center" CssClass="linhasGridPrincipal" />
                           <Columns>
                               <telerik:GridBoundColumn DataField="CNPJSegurado" HeaderText="CNPJ" ></telerik:GridBoundColumn>
                               <telerik:GridBoundColumn DataField="NomeSegurado" HeaderText="Razão Social" ></telerik:GridBoundColumn>
                               <telerik:GridBoundColumn DataField="TipoEmpresa" HeaderText="Tipo de Empresa" ></telerik:GridBoundColumn>
                            
                           </Columns>
                        
                       </MasterTableView>
                        
                       </telerik:RadGrid>
                        </div>          
                       </center>
                       </div>

Thanks!
Eduardo.
Eduardo
Top achievements
Rank 1
 asked on 26 Jun 2012
5 answers
139 views
I'm having a bad brain fart day... so i need a bit of help.

I have a RadTreeView looks like this

Root                                            RadListView Goes Here
--Group1
   +-- 1a     
   +-- 1b
   +-- 1c
--Group2
   +-- 2a    
   +-- 2b
   +-- 2c


beside the above treeview, i have a RadListView in which i want to display a list of users based on what is passed by clicking anything in the treeview (ie: 1a, 1b, 1c, 2a, 2b, 2c)

I want to bind RadListView on  RadTreeView1_NodeClick(object sender, RadTreeNodeEventArgs e) event

whats the best way of doing this?
visionXpert
Top achievements
Rank 1
 answered on 26 Jun 2012
2 answers
81 views
Hi, spent a bunch of time nogging over this one. Finally figured it out. I traced it all the way back to the Telerik.Web.UI.Editor.RadEditor.js. I'm using Q1 2009 RadControls for ASP.NET Ajax.

I was getting a "Object does not support this property or method" error when using the following script:

 

 

    <script type="text/javascript">  
        function OnClientLoad(editor, args) {  
            editor.fire("SelectAll");  
            editor.fire("ApplyClass", { value: ".default" });  
        }  
    </script> 
 

Figured out that it need an object with a get_value() method:

 

    <script type="text/javascript">  
        function OnClientLoad(editor, args) {  
            editor.fire("SelectAll");  
            objCssClass = new Object(); objCssClass.get_value = function() { return ".default"; }  
            editor.fire("ApplyClass", objCssClass);  
        }  
    </script> 
 

Hope this saves someone a few hours :)

Bob
Top achievements
Rank 2
 answered on 26 Jun 2012
4 answers
103 views
Happy New Year Telerik!

I have a grid with a RowSelected client event that fills in other controls on the page. The grid has a "clientselectcolumn". On loading I populate the grid with serverside code. I also fire a "item.selected = true" in the PreRender, which successfuly checks the first row and "clientselectcolumn" column, but it doesnt fire the RowSelected that fills in the controls on the page.

How can I go about checking and selecting the first row and filling in the other controls on the page load? I also want to implement this on the ItemCreated, so it checks the new row and fills in the default data I set on the postback for the other controls. This data is set up in the grid with the Client/DataKeyNames in a single query and on the RowSelected it fills in the other page controls.

Thanks!
SDI
SDI
Top achievements
Rank 1
 answered on 26 Jun 2012
2 answers
159 views
Dear Telerik-Support,

I use a RadButton and the Event OnClientClicking with the parameter sender, args.

I need the dom Event in this method. I try it with the global event reference and it only works for IE because Firefox etc. are not implement this global event reference. So I try it with an anoynomous function

Button property
OnClientClicking = function(sender, args) {  FnButton_ClientClicking(sender, args, event) };
 
JavaScript
function FnButton_ClientClicking(sender, args, e)
{
}

but in the function e will be undefined on firefox.

Whats wrong here? How can I parse the dom event to the function. If I try the same with an ImageButton and the OnClientClick Event the Browesers parse by using (this, event) all what I need!

Thanks for help,

Kind regards,
Christian
Slav
Telerik team
 answered on 26 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?