Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
165 views
Hi Team,
             I am facing one problem when i focused rad grid first row  keyboard navigation after grid has binded.Actually I have set the focus of radgrid first row after radgrid has been  binded.I called one client side events(GridCreated) in rad grid  for first row focus.I used following code for set the  row focus.


function RadGrid1Created(sender, args) {




       
        var grid = $find("<%=RadGrid1.ClientID %>");
        var MasterTable = grid.get_masterTableView();
        var data = sender.get_masterTableView().get_dataItems();


        if (data != '') {
            


            var gridview = $find('<%=RadGrid1.ClientID %>');            //                    
            gridview.get_masterTableView().get_dataItems()[0].get_element().cells[1].focus();
            sender.set_activeRow(sender.get_masterTableView().get_dataItems()[0].get_element());
        }




    }

when i pressed keyboard up and down arrow  after grid binded ,page is scorolling,Actually grid keyboard navigation should work.But it is not working.I think it lost focus.But this sample worked perfectly in ie9.But it is not worked in ie8,firefox and chrome...Please give the solution for this...I have attached my sample project.
Raja
Top achievements
Rank 1
 answered on 13 Dec 2011
6 answers
151 views
Is there a way we can define a common footer below tabstrip/multipage? Basically I would need the footer to cover precisely the same area as the tabs and control them from all the tabs.
Kate
Telerik team
 answered on 13 Dec 2011
1 answer
71 views
Load-on-demand is definitely an improvement over re-binding the entire tree on each expand/collapse.  However I'm still not clear on why it is technically infeasible to just load the entire result set ONCE then have all the expand/collapse behavior occur on the client.  Can you explain why that is not possible...because it would seem that would be the best way to implement a grid-like control?  We love the look and feel of this control but performance has become a real issue for us when dealing with larger amounts of data.

I know that there have been multiple posts on this forum regarding this control's performance.  Are there any plans in your development pipeline to remove the re-binding requirements from this control altogether and implement pure client-side expand/collapse behavior?

Thanks for your time!
Radoslav
Telerik team
 answered on 13 Dec 2011
1 answer
93 views
 
Kate
Telerik team
 answered on 13 Dec 2011
7 answers
305 views
I've been using the WebBlue skin in my application for awhile now, but after a recompile recently I get the following error:

Telerik.Web.UI.RadToolBar with ID='RadToolBar1' was unable to find embedded skin with name 'WebBlue'. Please, make sure that you spelled the skin name correctly, or if you want to use a custom skin, set EnableEmbeddedSkins=false.

I'm using the following code for the toolbar:

<telerik:RadToolBar ID="RadToolBar1" runat="server" Skin="WebBlue" CssClass="NoRoundedCornerEnds"
                            OnClientButtonClicked="DocumentToolbar_Click">
                            <Items></Items>
                        </telerik:RadToolBar>        

It works fine if I switch to a different skin (such as Office2007) or use the default skin.  It was working for many months prior to my recompile yesterday.  Is it possible that the skin has a caching error?

Thanks,
Matt
Kate
Telerik team
 answered on 13 Dec 2011
1 answer
121 views
HI,

Is there any solution to use EnableMarkMatches=true with ItemTemplate for listbox items?

Best Regards,
Lois.
Dimitar Terziev
Telerik team
 answered on 13 Dec 2011
2 answers
85 views
Hi Team,
    A scenario like this i have a root folder called FileExplorer/default/documents/  inside the ../documents folder i have some folders called
apple,orange,banana,mango,lime.  In these folders i want to show only apple and lime in Treeview(I think that, Normally which folder is visible in the treeview the same folder and their files only can view in the grid also), and those folders should allow all the properties like Create folder(that is sub folder), delete(sub folders and files) , upload(all the file formats inside the folder) and etc ...
 
Can u please help me how to do like this



Thank you all,
Ramesh
Top achievements
Rank 1
 answered on 13 Dec 2011
1 answer
150 views
Hi Telerik,

please have a look at the attached .jpg image.

the radwindow getting blured in some systems. this is not cooming for all our clients. only some clients it happening.
please let us know what will be the reason for this..


Princy
Top achievements
Rank 2
 answered on 13 Dec 2011
3 answers
115 views
I have RadGrid in my Webpage like as below:

  function GridCreated(sender, args)
     {
        var grid = sender;
        var masterTable = sender.get_masterTableView();
        masterTable.selectAllItems(true);
     }

<
telerik:RadGrid ID ="CandidatesGrid" runat="server" ShowStatusBar="false" AllowPaging="True" AllowSorting="True"
                PageSize="3"  AllowMultiRowSelection="True" GridLines="None" Skin="Outlook" EnableAjaxSkinRendering="true" Width="100%" OnItemCreated="CandidatesGrid_ItemCreated">
                                                             
 <MasterTableView Width="100%" ShowHeader="false" ClientDataKeyNames="ID" GroupLoadMode="Client" AutoGenerateColumns="false" CommandItemDisplay="top">
 <CommandItemTemplate>
  <table>
 <tr>
                                                                <td>
                                                                <label id="lblSelectJobs" runat="server" >Select Jobs</label>
                                                                </td>
                                                                <td>
                                                                <asp:LinkButton ID="lnkSelectAll" runat="server" CommandName="SelectAll" Style="" OnClientClick="SelectRows">Select All</asp:LinkButton>
                                                                </td>
                                                                <td>
                                                                <label id="lblLinkSeparater" runat="server">|</label>
                                                                </td>
                                                                <td>
                                                                <asp:LinkButton ID="lnkDeSelectAll" runat="server" CommandName="DeSelectAll" Style="">DeSelect All</asp:LinkButton>
                                                                </td>
                                                                </tr>
                                                                </table>
                                                            </CommandItemTemplate>
                                                                <Columns>              
                                                                    <telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" AutoPostBackOnFilter="true" ItemStyle-VerticalAlign="Top"/>
                                                                   <telerik:GridBoundColumn Visible="False" DataField="ID" UniqueName="ID" ItemStyle-Width="0"  />
                                                                   <telerik:GridBoundColumn HeaderText="JobDetails" DataField="JobDetails" UniqueName="JobDetails" />
                                                                     
                                                                </Columns>
                                                            </MasterTableView>
                                                            <ClientSettings EnableRowHoverStyle="true">
                                                                <Selecting AllowRowSelect="True" />
                                                                <ClientEvents OnRowSelected="GetSelectedNames" OnGridCreated="GridCreated"/>
                                                            </ClientSettings>        
                                                        </telerik:RadGrid>

My aim is to select all Checkbox on Page Load and When click the SelectAll link in the commandItem template and to deselect all checkbox when click deselectall link in commanditem template. I also want to get the index of the individual checkbox when clicking each checkbox.
To implement this I used the javascript property. RadGrid.get_masterTableView().selectAllItems(true)  as referred in the ome of the post in telerik forum.
But the result is a javascript error: object doesnot support this propert or method. I use Telerik 2008 version.
Please reply any solution to select all checkboxes on page load.
Regards,
Tinoy
Shinu
Top achievements
Rank 2
 answered on 13 Dec 2011
1 answer
489 views
I have to a dropdown list ddlAction inside radgrid (radgrid inside updatepanel). I need to select different items  in the dropdown to open different radwindow. In my case, have to open on server side, due to one of the dropdown item does dowload file (response.writefile) so the dropdown have to do full post pack(RegisterPostBackControl(ddlAction));

The problem is when I use Window1.VisibleOnPageLoad = true; like beow, after I did Window2.VisibleOnPageLoad = true; then go back  to Window1.VisibleOnPageLoad = true; both windows opened, how to avoid that? I only need to open one winow at at time, don't understand why when call window1 open after click widow2 open, both of them opened at the same time?


  

switch (PageIndex)
{
  case 1:
   RadWindow Window1;
   Window1 = (RadWindow)Page.Master.FindControl("wndWindow1");
   Window1.VisibleOnPageLoad = true;
   break;
  case 2:
   RadWindow Window2;
   Window2 = (RadWindow)Page.Master.FindControl("wndWindow2");           
   Window2.VisibleOnPageLoad = true;
   break;
}  
Shinu
Top achievements
Rank 2
 answered on 13 Dec 2011
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?