Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
697 views
The RadGrid offers a clientside event called OnDataBindingFailed which gets fired on the clientside (javascript) when there is a server side exception.

What is the equivalent for the RadAjaxPanel and RadAjaxManager? I want to be able to handle all exceptions as gracefully as possible.
Nikolay Rusev
Telerik team
 answered on 17 Dec 2009
1 answer
85 views
I want to have only the second level grouping have a footer with aggregate values. Not sure how to go about it.

________________________________________________________________________________

Group1 - need total in header
    -----  Grouping 2
                ----- Grouping 3
                           ++++++++++++++++++++++|++++++++|+++|+++++|+++|++++++|+++|+++++++++++++
                           ++++++++++++++++++++++|++++++++|+++|+++++|+++|++++++|+++|+++++++++++++
                           ++++++++++++++++++++++|++++++++|+++|+++++|+++|++++++|+++|+++++++++++++
                           ++++++++++++++++++++++|++++++++|+++|+++++|+++|++++++|+++|+++++++++++++
                           ++++++++++++++++++++++|++++++++|+++|+++++|+++|++++++|+++|+++++++++++++
                           ==Footer for 3 (need blank) ============================================
      =============Footer for 2 ========================(NEED SUMS HERE==============
================Footer for 1 (need blank)============================================
================Footer for Grid (need blank)==========================================

_________________________________________________________________________________


Since a picture is worth a thousand words.  Check out the attached pic for an idea of what I mean (not the above).


Yavor
Telerik team
 answered on 17 Dec 2009
1 answer
104 views
Is there an easy way to implement a "Chart Subset Selection" feature? Rather than trying to explain what I mean, let me show you. Take a look at this Flash control (after you choose a city from the dropdown). While this implementation is slightly unresponsive and somewhat crude, it's actually a very nice UX for the user besides the unresponsiveness.

See this page for the example I'm referring to:

Ultimately, they goal is to have a very high-level granularity chart to select a starting and ending point to view a much lower-granularity chart.

Is this currently possible or is there any chance of having some feature added so we can ultimately get to such a functionality? I can't tell you how many times (on date range-based charts) something like this would have been MUCH nicer than having two DatePickers specifying a Start Date and Stop Date.

Thanks!
-Shane
Vladimir Milev
Telerik team
 answered on 17 Dec 2009
5 answers
224 views
Hi,

i have a general Dialogs Problem at the RadEditor with FF and IE (Version higher 6.0). If i open the table assistent or picture properties in the IE 6.0 the Dialogs wil be shown correctly (see attached picture files), in FF and other IE Versions not. Also i setted the TableLayoutCSSFile Property and in IE 6.0 the correct entries will be shown and in FF and other IE Versions not.

I hope someone has any idea. Thx for help.

Frank
Martin
Telerik team
 answered on 17 Dec 2009
1 answer
227 views
I am not sure of the suggested method on how to accomplish this.  Any assistance would be greatly appreciated.

I have a grid bound to a boolean field.  If the item value is 1, I want he checkbox checked and read only (GridCheckBoxColumn would work here).  If the item value is 0, I want the checkbox enabled (GridCheckBoxColumn doesn't seem to work for this) and a postback when the user checks the box so I can update the database and rebind the two grids on the page.

In short, I want it so checks can never be removed, only added, and only one item checked per postback.  Grid is bound with NeedDataSource event.

Any suggestions?


Here is what I have now.  When it is done, I only want to have one column of checkboxes, the three below are all tests.

            <telerik:RadGrid runat="server" ID="RadGrid1" AutoGenerateColumns="false" 
                GridLines="None" Height="500" BorderWidth="0" AllowSorting="true" Style="outline: none" 
                ShowGroupPanel="false" AllowPaging="true" AllowFilteringByColumn="false"
                <ClientSettings Scrolling-AllowScroll="True" Scrolling-UseStaticHeaders="true" Selecting-AllowRowSelect="true" 
                    EnablePostBackOnRowClick="true"  EnableRowHoverStyle="true" 
                    ClientEvents-OnRowSelected="RowSelected" > 
                </ClientSettings> 
                <MasterTableView TableLayout="Fixed"  GroupLoadMode="Client" DataKeyNames="job_id" > 
                    <Columns> 
                    <telerik:GridCheckBoxColumn DataField="isChecked" ReadOnly="false" HeaderText="My Job1" HeaderStyle-Width="60" UniqueName="mycheck1" ></telerik:GridCheckBoxColumn> 
                    <telerik:GridClientSelectColumn HeaderText="My Job2"  HeaderStyle-Width="60" UniqueName="mycheck2"></telerik:GridClientSelectColumn> 
                    <telerik:GridTemplateColumn HeaderText="Check/UnCheck"   UniqueName="TemplateColumn"
                          <EditItemTemplate> 
                            <asp:CheckBox id="editChkBox" runat="server" AutoPostBack="true" 
                             Checked='<%# Bind("ischecked") %>' Enabled="true"
                            </asp:CheckBox> 
                          </EditItemTemplate> 
                          <ItemTemplate> 
                             <asp:CheckBox id="defaultChkBox" runat="server" Enabled="true" 
                             Checked='<%# Eval("ischecked") %>'
                           </asp:CheckBox> 
                          </ItemTemplate> 
                        </telerik:GridTemplateColumn> 
                    <telerik:GridBoundColumn DataField="user_id" Headertext="userid" Visible="false"></telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="username" HeaderText="Username" HeaderStyle-Width="120px"
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Title" HeaderText="Title" > 
                        </telerik:GridBoundColumn> 
                    </Columns> 
                </MasterTableView> 
            </telerik:RadGrid> 

Princy
Top achievements
Rank 2
 answered on 17 Dec 2009
1 answer
104 views
I have a situation where the cusomer want all items in a set of listbox with checkboxes to be selected/checked when the form loads.
How would I go about this?
Shinu
Top achievements
Rank 2
 answered on 17 Dec 2009
1 answer
422 views
Hello,

I have a RadGrid on my webpage which has paging enabled, I also use the GridClientSelectColumn in order to select all displayed records.  Here is an example:

<telerik:RadGrid ID="radgrdEvaluator" AutoGenerateColumns="False" AllowPaging="True" AllowMultiRowSelection="True" PageSize="10" runat="server">  
    <MasterTableView DataKeyNames="EvaluatorID" ShowHeadersWhenNoRecords="True">  
    <Columns> 
        <telerik:GridClientSelectColumn UniqueName="ClientSelectColumn">  
        <HeaderStyle Width="30px" HorizontalAlign="Center" /> 
        <ItemStyle Width="30px" HorizontalAlign="Center" /> 
        </telerik:GridClientSelectColumn> 
        <telerik:GridBoundColumn DataField="EvaluatorID" HeaderText="EvaluatorID" UniqueName="EvaluatorIDData"></telerik:GridBoundColumn> 
    </Columns> 
    </MasterTableView> 
    <ClientSettings EnableRowHoverStyle="True">  
    <Selecting AllowRowSelect="True" /> 
    </ClientSettings> 
    <pagerstyle mode="NextPrevAndNumeric" AlwaysVisible="True" /> 
</telerik:RadGrid> 

In this example let's say I have 30 records that are returned but I have set the PageSize to 10 which would give me 3 pages of results.  When I click the "select all" checkbox it only selects the 10 records of the displayed page.  How can I get it so that the "select all" checkbox selects all 30 records, and not just the 10 displayed records without having to increase the PageSize property? 

Thanks!
Jason
Princy
Top achievements
Rank 2
 answered on 17 Dec 2009
2 answers
77 views

Hi!

This looks like a bug - try to add a link in Rad editor and set the Target property to open in  “Same Window”, link works fine (opens in new window).

Now when if you add another link to same page and set its Target property to any of the options, the Target property of previous link is set to “#” (which opens a new window).

 

Similarly on adding links to that page, sets the Target property of all previous links to “#” (Open in new window).

Joe
Top achievements
Rank 1
 answered on 17 Dec 2009
2 answers
131 views
Hi, I wish to use different searchpatterns for view and upload, for example, for view, I want to display files with pattern "AWR10169*.JPG" but for upload, it can upload *.jpg files.
Already using CustomFileSystemProvider.
Any idea?
James Shelton Agar
Top achievements
Rank 2
 answered on 17 Dec 2009
4 answers
181 views

as for the post you'd solved the other day, local path  for fileexplorer, works pretty well, thanks
http://www.telerik.com/community/code-library/aspnet-ajax/file-explorer/use-local-path-instead.aspx

I am now trying to putup a feature for users to maintain images from my local path(not web root), as I can callout the imagemanager standalone as solved

how can i access the filebrowser within imagemanager and change file provider to support local path?

thanks
James Shelton Agar
Top achievements
Rank 2
 answered on 17 Dec 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?