Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
58 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
65 views
 
Kate
Telerik team
 answered on 13 Dec 2011
7 answers
284 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
95 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
73 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
110 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
103 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
461 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
1 answer
79 views
Most grid events have a Changed event (Index, Sort, PageSize, etc.) but Groups only have a Changing event..??

Shinu
Top achievements
Rank 2
 answered on 13 Dec 2011
1 answer
173 views
Is there are way to drag and drop items that are within a datalist.  See code below, i want to be able to drag and drop rows "Make, Model,....  Thanks.

Here is some sample code:
<telerik:RadGrid ID="RadGrid1" AllowFilteringByColumn="true" runat="server" GridLines="None" AllowPaging="true" AllowSorting="true" PageSize="6">
        <PagerStyle Mode="NextPrevAndNumeric" />
        <MasterTableView TableLayout="Fixed">
            <ItemTemplate>
                <%# (((GridItem)Container).ItemIndex != 0)? "</td></tr></table>" : "" %>
                <asp:Panel ID="ItemContainer" CssClass='<%# (((GridItem)Container).ItemType == GridItemType.Item)? "item" : "alternatingItem" %>' runat="server">
                    <b>Make:</b>
                    <%# Eval("Make")%>
                    <br />
                    <b>Model:</b>
                    <%# Eval("Model")%>
                    <br />
                    <b>Year:</b>
                    <%# Eval("Year")%>
                    <br />
                </asp:Panel>
            </ItemTemplate>
        </MasterTableView>
        <GroupingSettings CaseSensitive="false" />
        <ClientSettings AllowDragToGroup="true" AllowRowsDragDrop="true">
            <Selecting AllowRowSelect="true" />
            <Scrolling AllowScroll="true" UseStaticHeaders="true" />
        </ClientSettings>
    </telerik:RadGrid>
</asp:Content>

Shinu
Top achievements
Rank 2
 answered on 13 Dec 2011
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
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
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
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?