Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
175 views
Hi,
I'm having all sorts of issues rendering the grid control when utilizing different screen resolutions.

When I'm using a high quality resolution everything appears to be working fine, however the minute I reduce the resolution I get the scroll bars and it distorts the view.  I've wrapped the grid around a DIV and I was under the impression that the grid control was suppose to only work with the DIV boundary.  This is not the case.  For example
 <div class="LeadGridContainer">  
            <ucPL:Preloader ID="Preloader" runat="server" /> 
            <telerik:RadGrid ID="dbgLeads" runat="server" AllowPaging="True" AllowSorting="True" 
                AutoGenerateColumns="False" GridLines="None" Skin="Office2007" PageSize="50" 
                AllowMultiRowSelection="True" OnSortCommand="dbgLeads_SortCommand" OnNeedDataSource="dbgLeads_NeedDataSource" 
                OnItemCreated="dbgLeads_ItemCreated" OnItemCommand="dbgLeads_ItemCommand" MasterTableView-GroupsDefaultExpanded="false" 
                GroupingSettings-CaseSensitive="false" EnableLinqExpressions="False">  
                <PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="true" /> 
                <MasterTableView Name="LeadDetails" GroupLoadMode="Client" CommandItemDisplay="Top" 
                    DataKeyNames="LeadId,Email,Firstname,Lastname,LeadPermission,CompanyId" AllowMultiColumnSorting="false" 
                    AllowNaturalSort="false" AllowFilteringByColumn="true">  
                    <CommandItemTemplate> 
                        <div style="padding: 5px 5px;">  
                            <asp:LinkButton ID="btnAssignStatus" runat="server" OnClick="btnAssignStatus_Click" 
                                OnClientClick="javascript:return getSelectedCheckBoxCount('')" Visible='<%# dbgLeads.EditIndexes.Count == 0 %>'><img style="border:0px;vertical-align:middle;" alt="" src="../Images/SinglePlus.gif" />Assign Status</asp:LinkButton>&nbsp;&nbsp;  
                            <asp:LinkButton ID="btnAssignAgent" runat="server" OnClick="btnAssignAgent_Click" 
                                OnClientClick="javascript:return getSelectedCheckBoxCount('')" Visible='<%# dbgLeads.EditIndexes.Count == 0 %>'><img style="border:0px;vertical-align:middle;" alt="" src="../Images/SinglePlus.gif" />Assign Agent</asp:LinkButton>&nbsp;&nbsp;  
                            <asp:LinkButton ID="btnDeleteLead" runat="server" OnClick="btnDeleteLead_Click" OnClientClick="javascript:return getSelectedCheckBoxCount('Delete all selected leads?')" 
                                Visible='<%# dbgLeads.EditIndexes.Count == 0 %>'><img style="border:0px;vertical-align:middle;" alt="" src="../Images/SingleMinus.gif" />Delete Lead(s)</asp:LinkButton>&nbsp;&nbsp;  
                        </div> 
                    </CommandItemTemplate> 
                    <Columns> 
                        <telerik:GridButtonColumn ButtonType="ImageButton" CommandName="Navigate" HeaderText="View Details" 
                            ImageUrl="~/Images/Symbol-EditIcon_20x20.png" ButtonCssClass="pointerMouseCursor" 
                            Text="View this lead details">  
                        </telerik:GridButtonColumn> 
                        <telerik:GridBoundColumn DataField="Firstname" HeaderText="First Name" UniqueName="Firstname" 
                            ItemStyle-Width="10%" SortExpression="Firstname" AutoPostBackOnFilter="false" 
                            CurrentFilterFunction="equalto" FilterDelay="4000" ShowFilterIcon="false">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Lastname" HeaderText="Last Name" UniqueName="Lastname" 
                            ItemStyle-Width="10%" SortExpression="Lastname" AutoPostBackOnFilter="false" 
                            CurrentFilterFunction="equalto" FilterDelay="4000" ShowFilterIcon="false">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Phone" HeaderText="Phone" UniqueName="Phone" 
                            ItemStyle-Width="14%" SortExpression="Phone" AutoPostBackOnFilter="false" CurrentFilterFunction="equalto" 
                            FilterDelay="4000" ShowFilterIcon="false">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Mobilephone" HeaderText="Cell" UniqueName="Mobilephone" 
                            ItemStyle-Width="6%" SortExpression="Mobilephone" AutoPostBackOnFilter="false" 
                            CurrentFilterFunction="equalto" FilterDelay="4000" ShowFilterIcon="false">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="CompanyName" HeaderText="Company" UniqueName="CompanyName" 
                            ItemStyle-Width="10%" SortExpression="CompanyName">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="State" HeaderText="State" UniqueName="State" 
                            ItemStyle-Width="10%" SortExpression="State">  
                            <ItemStyle HorizontalAlign="Left" /> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Createddate" DataFormatString="{0:MM/dd/yy}" 
                            DataType="System.DateTime" HeaderText="Create Date" UniqueName="Createddate" 
                            ItemStyle-Width="10%" SortExpression="Createddate" AutoPostBackOnFilter="false" 
                            CurrentFilterFunction="equalto" FilterDelay="4000" ShowFilterIcon="false">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Systemdays" HeaderText="Days In System" UniqueName="Systemdays" 
                            ItemStyle-Width="10%" SortExpression="Systemdays">  
                            <ItemStyle HorizontalAlign="Right"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Email" HeaderText="E-Mail" UniqueName="Email" 
                            ItemStyle-Width="10%" SortExpression="Email">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="AssignedTo" HeaderText="Lead Assigned To" UniqueName="AssignedTo" 
                            ItemStyle-Width="10%" SortExpression="AssignedTo">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="ContactType1" HeaderText="Contact Type" UniqueName="ContactType1" 
                            ItemStyle-Width="5%" SortExpression="ContactType1">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Status" HeaderText="Status" UniqueName="Status" 
                            ItemStyle-Width="5%" SortExpression="Status">  
                            <ItemStyle HorizontalAlign="Left"></ItemStyle> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" HeaderStyle-Width="22%" 
                            ItemStyle-Width="2%" ItemStyle-HorizontalAlign="Center">  
                            <HeaderStyle Width="22%"></HeaderStyle> 
                            <ItemStyle HorizontalAlign="Center" Width="2%"></ItemStyle> 
                        </telerik:GridClientSelectColumn> 
                    </Columns> 
                </MasterTableView> 
                <PagerStyle Mode="NextPrevAndNumeric" /> 
                <ClientSettings AllowGroupExpandCollapse="True" ReorderColumnsOnClient="True" AllowColumnsReorder="True" 
                    Selecting-AllowRowSelect="True" DataBinding-EnableCaching="True">  
                    <DataBinding EnableCaching="True">  
                    </DataBinding> 
                    <Selecting AllowRowSelect="True"></Selecting> 
                </ClientSettings> 
                <GroupingSettings ShowUnGroupButton="true" /> 
            </telerik:RadGrid> 
            <br /> 
            <br /> 
            <asp:Label ID="totalRecordCount" runat="server" Text="" CssClass="FormLabel"></asp:Label> 
            <asp:Button ID="btnPrevious" runat="server" Text="Previous 250" Width="85px" OnClick="btnPrevious_Click" /> 
            <asp:Label ID="leadRange" runat="server" Text="" CssClass="FormLabel"></asp:Label> 
            <asp:Button ID="btnNext" runat="server" Text="Next 250" Width="85px" OnClick="btnNext_Click" /> 
            <input id="isValidDate" type="hidden" runat="server" /> 
        </div> 

Here is the Lead DIV

.LeadGridContainer

 

{padding:0 0 0 0px; width:95%;}

I'm under the impression that the grid can only behave within this DIV container that I created.  Any help on this would be greatly appreciated.
Thanks,

 

Dimo
Telerik team
 answered on 07 Jul 2010
1 answer
99 views
Hi,

i am using RadDatePicker & RadAsyncUpload controls on my page. but the problem is both the controls are not displaying at the same time.

Regards
Ravi
Dimo
Telerik team
 answered on 07 Jul 2010
2 answers
154 views
Hello,

I have a grid which is bind through advanced data binding. I run in a code behind method in a loop multiple times grid.rebind(). Unfortunately only the first time NeedDataSource is called. Contrary to this the grid.ItemDataBound is called the same number, I call the rebind method. So what is my mistake, that NeedDataSource is called just once per Postback?

Thanks in advance
Simon
Simon
Top achievements
Rank 1
 answered on 07 Jul 2010
1 answer
94 views
Our menu renders incorrectly in Firefox (fine in IE8). While diagnosing the issue, I found that changing the EnableStyleSheetCombine property of the RadStyleSheetManager fixes this issue. When "true", the menu appears as the "MenuBad.jpg" file illustrates. When "false", it appears as the "MenuGood.jpg" file illustrates.

The code for the RadStyleSheetManager and the RadMenu are as follows:

    <telerik:RadStyleSheetManager ID="ssm1" runat="server" EnableStyleSheetCombine="true"
            <StyleSheets> 
                <telerik:StyleSheetReference Name="Turner.EA.aa.Skins.Styles.OrgComboBox.css" 
                   Assembly="xxx.EA.aa.Skins"></telerik:StyleSheetReference> 
                <telerik:StyleSheetReference Name="xxx.EA.aa.Skins.Styles.MainMenu.css" 
                   Assembly="xxx.EA.aa.Skins"></telerik:StyleSheetReference> 
                <telerik:StyleSheetReference Name="xxx.EA.aa.Skins.Styles.UtilityMenu.css" 
                   Assembly="xxx.EA.aa.Skins"></telerik:StyleSheetReference> 
           </StyleSheets> 
    </telerik:RadStyleSheetManager> 

        <telerik:RadMenu ID="RadMenu1" runat="server" Skin="WebBlue" Width="100%" EnableViewState="false" style="z-index:400;" > 
            <Items> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_myRuns_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_myRuns_roll.gif" NavigateUrl="myRundown.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_assign_more_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_assign_more_roll.gif" NavigateUrl="Assignments.aspx"
                    <Items> 
                        <telerik:RadMenuItem Text="Action Rundown" NavigateUrl="Assignments.aspx?VID=6" /> 
                        <telerik:RadMenuItem Text="Slot Editor Rundown" NavigateUrl="Assignments.aspx?VID=1" /> 
                        <telerik:RadMenuItem Text="Live Producers Rundown" NavigateUrl="Assignments.aspx?VID=2" /> 
                        <telerik:RadMenuItem Text="Futures Rundown" NavigateUrl="Assignments.aspx?VID=3" /> 
                        <telerik:RadMenuItem Text="Travel Rundown" NavigateUrl="Assignments.aspx?VID=4" /> 
                        <telerik:RadMenuItem Text="Non-Editorial Assignments Rundown" NavigateUrl="Assignments.aspx?VID=5" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_packages_more_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_packages_more_roll.gif" NavigateUrl="Packages.aspx"
                    <Items> 
                        <telerik:RadMenuItem Text="Editorial Package Rundown" NavigateUrl="Packages.aspx?VID=1" /> 
                        <telerik:RadMenuItem Text="Bank Package Rundown" NavigateUrl="Packages.aspx?VID=2" /> 
                        <telerik:RadMenuItem Text="Standing Booking Rundown" NavigateUrl="Packages.aspx?VID=3" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_affil_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_affil_roll.gif" NavigateUrl="Affiliates.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_drafts_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_drafts_roll.gif" NavigateUrl="Working.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_scheduleV_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_scheduleV_roll.gif" value="schedule"
                    <Items> 
                        <telerik:RadMenuItem Text="KU Truck Planning" value="trucks" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_rollcall_more_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_rollcall_more_roll.gif" NavigateUrl="RollCall.aspx"
                    <Items> 
                        <telerik:RadMenuItem Text="People" NavigateUrl="PersonnelSearch.aspx" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_linesum_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_linesum_roll.gif" NavigateUrl="LinesSummary.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_search_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_search_roll.gif" NavigateUrl="Search.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_reports_more_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_reports_more_roll.gif" NavigateUrl="Reports_Menu.aspx"
                    <Items> 
                        <telerik:RadMenuItem Text="Allocation" NavigateUrl="Reports_Allocation.aspx" /> 
                        <telerik:RadMenuItem Text="Analysis" NavigateUrl="Reports_Analysis.aspx" /> 
                        <telerik:RadMenuItem Text="Personnel Time" NavigateUrl="PersonnelTime.aspx" /> 
                        <telerik:RadMenuItem Text="Story Expenses" NavigateUrl="Reports_StoryExpensesFiltered.aspx" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_admin_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_admin_roll.gif" NavigateUrl="SiteAdmin.aspx" /> 
            </Items> 
        </telerik:RadMenu> 

        <telerik:RadMenu ID="RadMenu1" runat="server" Skin="WebBlue" Width="100%" EnableViewState="false" style="z-index:400;" > 
            <Items> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_myRuns_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_myRuns_roll.gif" NavigateUrl="myRundown.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_assign_more_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_assign_more_roll.gif" NavigateUrl="Assignments.aspx"
                    <Items> 
                        <telerik:RadMenuItem Text="Action Rundown" NavigateUrl="Assignments.aspx?VID=6" /> 
                        <telerik:RadMenuItem Text="Slot Editor Rundown" NavigateUrl="Assignments.aspx?VID=1" /> 
                        <telerik:RadMenuItem Text="Live Producers Rundown" NavigateUrl="Assignments.aspx?VID=2" /> 
                        <telerik:RadMenuItem Text="Futures Rundown" NavigateUrl="Assignments.aspx?VID=3" /> 
                        <telerik:RadMenuItem Text="Travel Rundown" NavigateUrl="Assignments.aspx?VID=4" /> 
                        <telerik:RadMenuItem Text="Non-Editorial Assignments Rundown" NavigateUrl="Assignments.aspx?VID=5" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_packages_more_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_packages_more_roll.gif" NavigateUrl="Packages.aspx"
                    <Items> 
                        <telerik:RadMenuItem Text="Editorial Package Rundown" NavigateUrl="Packages.aspx?VID=1" /> 
                        <telerik:RadMenuItem Text="Bank Package Rundown" NavigateUrl="Packages.aspx?VID=2" /> 
                        <telerik:RadMenuItem Text="Standing Booking Rundown" NavigateUrl="Packages.aspx?VID=3" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_affil_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_affil_roll.gif" NavigateUrl="Affiliates.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_drafts_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_drafts_roll.gif" NavigateUrl="Working.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_scheduleV_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_scheduleV_roll.gif" value="schedule"
                    <Items> 
                        <telerik:RadMenuItem Text="KU Truck Planning" value="trucks" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_rollcall_more_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_rollcall_more_roll.gif" NavigateUrl="RollCall.aspx"
                    <Items> 
                        <telerik:RadMenuItem Text="People" NavigateUrl="PersonnelSearch.aspx" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_linesum_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_linesum_roll.gif" NavigateUrl="LinesSummary.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_search_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_search_roll.gif" NavigateUrl="Search.aspx" /> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_reports_more_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_reports_more_roll.gif" NavigateUrl="Reports_Menu.aspx"
                    <Items> 
                        <telerik:RadMenuItem Text="Allocation" NavigateUrl="Reports_Allocation.aspx" /> 
                        <telerik:RadMenuItem Text="Analysis" NavigateUrl="Reports_Analysis.aspx" /> 
                        <telerik:RadMenuItem Text="Personnel Time" NavigateUrl="PersonnelTime.aspx" /> 
                        <telerik:RadMenuItem Text="Story Expenses" NavigateUrl="Reports_StoryExpensesFiltered.aspx" /> 
                    </Items> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem ImageUrl="images/mainmenu/menu_button_admin_norm.gif" HoveredImageUrl="images/mainmenu/menu_button_admin_roll.gif" NavigateUrl="SiteAdmin.aspx" /> 
            </Items> 
        </telerik:RadMenu> 


Kamen Bundev
Telerik team
 answered on 07 Jul 2010
1 answer
107 views
Here is my situation.

I have a page HTTP Lets call it "Products"
I have a page HTTPS Let call it "Purchase"
I have a page (which can be HTTP or HTTPS) lets call it "Terms"

The products http page calls a Modal dialog "Purchase" and on this purchase dialog I have a "View Terms" link.
the "Terms" dialog shows up Inside the bounds of the "Purchase" dialog.

I am trying to get the "Terms" page to show up outside the bounds of the "Puchase" dialog since it is much larger.

My problem is that I am getting an access denied trying to call javascript on the parent, "Products" Page.

"Purchase" radWindow
function ShowTerms() {
      GetRadWindow().BrowserWindow.ShowTerms();
     }

"Products" Main Page
   function ShowTerms() {
    var oManager = GetRadWindowManager();
    var oWnd = oManager.open('/Terms.aspx', 'dlgTerms');
   }

Of course being that Purchase is SSL and Products is not Im getting an Access Denied.

basically i need to the Terms dialog to show up outside of the "Purchase" dialog bounds, without having to call a function on the parent window (because of the HTTP/HTTPS restrictions.)

anyone have a workaround for my dilema?

Oh, and I have other restrictions I need to take into account, so making everything https or http is not an option as it stands.
Georgi Tunev
Telerik team
 answered on 07 Jul 2010
5 answers
355 views
I was noticing there are some inconsistencies between browsers.

I am using a fieldset with a legend and am noticing that when using the black skin, the legend is correctly rendered in green when using IE, but is white in firefox and chrome.

This is evident on the first look demo of the field decorator.
http://demos.telerik.com/aspnet-ajax/formdecorator/examples/default/defaultcs.aspx

Is this one of those, can't fix items or is there some css magic I can use to get the other browsers to render the legend in the same color.

As well, just a minor layout issue with the demo, when using chrome, the legend on the left bottom fieldset (username/password) is right aligned, but left aligned in IE/FireFox.


Bozhidar
Telerik team
 answered on 07 Jul 2010
2 answers
98 views
Hi

The fieldset border gets broken up every time a validator control is shown.  This occurs in IE6, 7 and 8 but seems OK in Firefox.

Here is a very simple form sample to demonstrate the issue:

    <telerik:RadScriptManager ID="RadScriptManager" runat="server" /> 
    <telerik:RadFormDecorator ID="RadFormDecorator" runat="server" DecoratedControls="Default, Textbox, Textarea, Fieldset, Select" /> 
    <fieldset> 
      <legend>Test form</legend> 
      <div> 
        <asp:Label ID="lblName" runat="server" Text="Name" AssociatedControlID="txtName" /> 
        <asp:TextBox ID="txtName" runat="server" /> 
        <asp:RequiredFieldValidator ID="rfvName" runat="server" ErrorMessage="Name is required" ControlToValidate="txtName" Display="Static" Text="*" /> 
      </div> 
      <div> 
        <asp:Label ID="lblPosition" runat="server" Text="Position" AssociatedControlID="txtPosition" /> 
        <asp:TextBox ID="txtPosition" runat="server" /> 
        <asp:RequiredFieldValidator ID="rfvPosition" runat="server" ErrorMessage="Position is required" ControlToValidate="txtPosition" Display="Static" Text="*" /> 
      </div> 
      <div style="text-align: center"
        <asp:Button ID="btnSubmit" runat="server" Text="Submit" /> 
        <asp:ValidationSummary ID="ValidationSummary" runat="server" /> 
      </div> 
    </fieldset> 
 

Should I avoid using RadFormDecorator for fieldsets if the user agent is IE?

Regards,
Dan
Bozhidar
Telerik team
 answered on 07 Jul 2010
1 answer
70 views
Is there any code sample that I can get the value of a TreeViewNode after dropping the RadGridItem?

Can't find any sample code from RadGrid t RadTreeView.

Thanks in advance.
Veli
Telerik team
 answered on 07 Jul 2010
1 answer
151 views
Hello,
I'm using telerik upload for uploading multiple files
The control gives the option to upload up to 20 files .
The problem is that sometimes not all files were uploaded
for example, I choose 10 files to upload and after 3 or 4 files
it stops uploading and redirecting to main page as if all files were uploaded.
I get no error message.... and cant feagure out what the problem is.

Have any of you encountered this kind of problem?
Any ideas for solution or how to check why this is hapening?

Thank you very much

Ilan
Genady Sergeev
Telerik team
 answered on 07 Jul 2010
1 answer
140 views
I've got a grid bound to a dataset that contains a column named "[$Colld]".      The brackets are actually a part of the column name.
For this column on my grid, I've got 

 

 

 

DataField="[$Colld]" 

and that works fine, the data shows in the grid.   However, I've also got   

 

 

 

 

 

SortExpression="[$Colld]" 

and when I click on the column header to sort by that column, I get this error:
Cannot find column $Colld.

It's like the brackets get ignored when they are in the SortExpression. 
So I tried:    

 

 

 

 

 

SortExpression="[[$Colld]]" 

but I get this error:
[[$Colld]] is neither a DataColumn nor a DataRelation for table ICRData.

How can I escape the brackets so that the SortExpression is accurately interpreted as "[$Colld]" ??  

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Princy
Top achievements
Rank 2
 answered on 07 Jul 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?