Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
80 views
I have Radgrid with 2 levels of grouping

The basic export is exporting the data in the format that it is displayed. i.e with  groups level

Is there anyway I can export the raw data of the grid i.e with no grouping. Also I would like to omit certain columns from exporting (i.e for  example I have dept_code and dept_name . Dept_code is the code value for Dept name, so in this i want to export only Dept name )

Thanks for your help
Shinu
Top achievements
Rank 2
 answered on 08 Jun 2012
1 answer
92 views
I used below for my first radwindow pop up

 

 

this.imgCreateStoreList.Attributes.Add("onclick", "openWinEvents('Events.aspx?Designator=" + desParameter + "&ctProcessId=" + ctProcessId + "&rnd=" + System.Guid.NewGuid() + "'); return false;");

 

function openWinEvents(parameter) {
           var wnd = $find('<%=RadWindow1.ClientID %>');
           if (wnd != null) {
               wnd.setUrl("/Builder/" + parameter + "");
               wnd.setSize(800, 600);
               wnd.set_modal(true);
               wnd.set_iconUrl("/img/radwindowicon.gif");
               wnd.Show();
           }
       }
On the 1st radwindow pop up, I have a radupload button and want to save the file and open second radwindow for message/report display, I tried lots ways, can't open the second radwindow.

I suppose to use server side code to open it.

Tried:
RadWindow CommPromptWindow = (RadWindow)Page.Master.FindControl("EventsPromptWindow");
  
CommPromptWindow.VisibleOnPageLoad = true;
But not work. Please help!
Princy
Top achievements
Rank 2
 answered on 08 Jun 2012
1 answer
41 views
Hi Shinu,

This thread is a reply for this below thread..i couldnt post a reply for this thread.

http://www.telerik.com/community/forums/aspnet-ajax/grid/replace-filter-text-box-with-a-button-in-grid-filtering.aspx . 

thnks for replying.

Actually i m using an older version(2008) of Telerik DLL. and that is not supporting "FilterTemplate". Any alternative to achieve the functionality? 
Shinu
Top achievements
Rank 2
 answered on 08 Jun 2012
1 answer
100 views
Hi,

What could cause a performance issue with AJAX request that is network related?  We're getting different results based on multiple internet providers.  On some internet providers the AJAX request are twice as fast as the page loads, on others the AJAX request are double the page load speed.  It seems to have something to do with compression.  When we have compression on AJAX request are double the page load speed but still only on some internet providers.  With compression off AJAX request are always twice as fast as page loads.

We are using the RadAJAXManager...

Version: 2011.3.1305.40

Thanks,
Darren 
Darren
Top achievements
Rank 1
 answered on 08 Jun 2012
1 answer
105 views
The page I'm dealing with has a RadTextBox then a RadEditor following it.  Is it possible, when the Tab key is hit, to jump from the RadTextBox to the RadEditor's body input, skipping over the formatting options (Print, spellcheck, undo, redo, etc...)?  This would allow a user to type into the RadTextBox, hit Tab, and immediately start typing into the RadEditor, instead of needing to tab multiple times, or click.

Thanks
Princy
Top achievements
Rank 2
 answered on 08 Jun 2012
0 answers
168 views
Hi
I have a user control (ascx) with a radgrid. The user control is placed in a container control and that is placed in update panel.
I always get 
$find("ctl00_phMain_FS_TreeClients_ClientsList1_RadGrid1") is null

I've tried to move the container out of the update panel but the result is the same.
here is my user control code

    <script type="text/javascript">
        function RefreshClientGrid() {
            try
            {
                var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
                masterTable.rebind();
            }catch(Error)
            {
                alert(Error);
            }
             
        }
    </script>
<asp:Label ID="CompanyIdLabel" runat="server" Visible="False"></asp:Label>
<uc1:FSCompanyReadOnly ID="FSCompanyReadOnly1" runat="server" />
<telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" AllowSorting="True"
    AutoGenerateColumns="False" DataSourceID="LinqDataSource1"
    GridLines="None" Skin="Telerik"
    PageSize="15" CellSpacing="0" OnItemCommand="RadGrid1_ItemCommand"
    AllowAutomaticDeletes="True" AllowAutomaticInserts="True"
    AllowAutomaticUpdates="True">
    <MasterTableView DataKeyNames="ClientId" CommandItemDisplay="Top" ClientDataKeyNames="ClientId">
        <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>
        <RowIndicatorColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
        </RowIndicatorColumn>
        <ExpandCollapseColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
        </ExpandCollapseColumn>
        <Columns>
            <telerik:GridEditCommandColumn ButtonType="LinkButton" UniqueName="EditCommandColumn">
                <ItemStyle CssClass="GridImageButton" />
            </telerik:GridEditCommandColumn>
            <telerik:GridBoundColumn DataField="ClientId" DataType="System.Int32" HeaderText="ClientId"

Help please
Peter
Top achievements
Rank 1
 asked on 08 Jun 2012
2 answers
121 views
I am new to RadControls and am trying the trial version.

What I am trying to find is an example of the following (I've searched the forum for hours (over 2 days)):

Within a Grid there will be textboxes. When a textbox is clicked, I want a different grid to popup so that the user can click on an item in that second grid. The second grid will then close and the textbox (in the first grid) will populate with data that was selected from the second grid.

I think this is a fairly common behavior, in short, a Lookup of potential data that can be filled in the textbox.

Very similar to a calendar lookup, when a date is selected, the textbox fills with that date. I just want to show a grid and fill the textbox with the selected data (string, or whatever).

If there is a RadControl that does this out of the box, then I would like to know the name. I thought I had looked at all those nice tools and didn't seem to find a proper match for this functionality.

I look forward to your help :-)

Thank you in advance,

R
R
Top achievements
Rank 1
 answered on 07 Jun 2012
1 answer
102 views
Hi

I got a radGrid I update on it but now i dont want to update all my fields meaning i want a user to be restricted on accessing some textboxes during update on the grid.My problem is when i make them readonly they overwrite on database as null not keeping thier records. how would i achieve that?
Jayesh Goyani
Top achievements
Rank 2
 answered on 07 Jun 2012
1 answer
210 views
Hi, 
I am having an issue with RadComboBox not keeping the selected item on postback on my Local where as same code is working fine on the production server or any of my team's local machine. I am not sure when i started having this problem but until i was debugging a page which has a RadComboBox.
<telerik:RadComboBox ID="ddlcmd" runat="server" CheckBoxes="true" Width="300px" OnClientItemChecked="OnClientItemChecked" AllowCustomText="false">
               <Items>
                   <telerik:RadComboBoxItem Text="item1" checked="true" />
                   <telerik:RadComboBoxItem Text="item2" checked="true" />
                   <telerik:RadComboBoxItem Text="item3" />
                   <telerik:RadComboBoxItem Text="item4" checked="true" />
               </Items>
           </telerik:RadComboBox>


function OnClientItemChecked(sender, eventArgs) {
     var item = eventArgs.get_item();
     sender.set_text("You checked " + item.get_text());
 }

During runtime when i check item3 then on post back the dropdown still has just three items checked. On further investigation the RadGrid on the same page as well as other pages do not sort Ascending / Descending while the same code works find on prod or any of my teams local machine. The grouping of the RadGrid works fine though. These controls were working perfectly and the only thing i can think of is i had recently ran the Telerik.Web.UI_2012_1_411_Dev installer i downloaded from Telerik itself in order to grab and manipulate the RadEditor's Tools pop controls.

I usually just make reference to the Telerik Dlls in the project so I uninstalled the Telerik control thinking that would fix the issue and deleted asp.net temporary files, restarted IIS couple of times, Clean, Rebuild etc but no luck . The only option i have right now is to uninstall the VS2010 and reset up my machine(which is a pain) for team development --but i'd like to know if there is an easier way to resolve this issue??
Ivana
Telerik team
 answered on 07 Jun 2012
0 answers
96 views

i have a Telerik RadGrid in a ASP.Net page, my solution is using MVP pattern. i need implementing MVP pattern for CRUD operations for my RadGrid. any body knows about this?

many thanks.

amir
Top achievements
Rank 1
 asked on 07 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?