Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
64 views
If any ideas please share with me,

I want to drag only row from rad grid view and drop it into rad tree view control

Thanks


Plamen
Telerik team
 answered on 02 Oct 2012
3 answers
109 views
http://www.telerik.com/community/forums/aspnet-ajax/grid/persist-radgrid-settings-in-profile.aspx

I tried this - there is a limit of 3 sorting columns saved.  If I select a sort on 4 columns only 3 are persisted. Is that the way it is supposed to work?

спасибо
Tsvetoslav
Telerik team
 answered on 02 Oct 2012
1 answer
144 views
Hi all I have designed my pivot grid as follows

<telerik:RadPivotGrid EnableViewState="true" AllowPaging="true" PageSize="10" Width="800px"
            ViewStateMode="Inherit" ID="RadPivotGrid1" runat="server" ColumnHeaderZoneText="ColumnHeaderZone"
            ShowColumnHeaderZone="true" ShowDataHeaderZone="False" OnNeedDataSource="RadPivotGrid1_NeedDataSource">
            <ClientSettings AllowFieldsReordering="True">
                <Scrolling AllowVerticalScroll="True" ScrollHeight="320px" />
            </ClientSettings>
            <Fields>
                <telerik:PivotGridRowField DataField="EmpID" ZoneIndex="0">
                </telerik:PivotGridRowField>
                <telerik:PivotGridRowField DataField="PayeeName" ZoneIndex="1">
                </telerik:PivotGridRowField>
                <telerik:PivotGridColumnField DataField="BankAccountType">
                </telerik:PivotGridColumnField>
                <telerik:PivotGridAggregateField DataField="BankRoutingNumber">
                </telerik:PivotGridAggregateField>
                <telerik:PivotGridAggregateField DataField="BankAccount">
                </telerik:PivotGridAggregateField>
            </Fields>
            <TotalsSettings GrandTotalsVisibility="None" />
            <ZoneContextMenu EnableTheming="True" ID="rpgzcMenu">
            </ZoneContextMenu>
        </telerik:RadPivotGrid>

And my code for binding is as follows

protected void RadPivotGrid1_NeedDataSource(object sender, Telerik.Web.UI.PivotGridNeedDataSourceEventArgs e)
    {
        MySqlConnection con = new MySqlConnection(ConfigurationManager.ConnectionStrings["sqlcon1"].ConnectionString);
        MySqlCommand cmd = new MySqlCommand("select EmpID,BankAccountType,PayeeName,BankRoutingNumber,BankAccount,Amount from tblemployeebankdata where EmpID=1021", con);
        con.Open();
        MySqlDataAdapter da = new MySqlDataAdapter();
        da.SelectCommand = cmd;
        DataSet ds = new DataSet();
        da.Fill(ds);
        RadPivotGrid1.DataSource = ds;
    }
  
My pivot grid looks as follows

http://imageshack.us/photo/my-images/109/pivoto.jpg/

Can some one help me. Also how can I use edit and delete options in pivot grid
Andrey
Telerik team
 answered on 02 Oct 2012
3 answers
81 views
Hi there, 

I am using the RadAutoCompleteBox  control and I have a question. 

I see you can bind it to a sql provider or even a webservice. In my case I do not want to put in the sql on the page. I have a remoting object and i wish to use its method. 

How would be the best way to implement in such an environment.

Thanks

K
Kalina
Telerik team
 answered on 02 Oct 2012
2 answers
104 views
Hi All,

Is it possible to add spell checking capabilities to GridHTMLEditorColumn or any details as to how to customise the editor in a GridHTMLEditorColumn?

Thanks

Guido
Martijn
Top achievements
Rank 1
 answered on 02 Oct 2012
1 answer
38 views
Hi ,

Please help me to get out from the below mentioned situtaion.

Requirement :
we have radgrid and on click of add new record a pop up is opened where we have few customized fields.
We have a radtext box which is attched with a radbutton , once the user enter any details in the text box and click on the button the same needs to be populated in Checkbox list provided just below . and finally when user is done filling up all the details and then clicks on enter button the record needs to be saved to database.

What we following we did .
first we made AllowOnSubmit = true ( We have to use this as when we are editiing the record its inline and when we inserting its pop up , so when user updates in inline mode and hits enter button this property will helpt to update the same.)

Problem :
1) Due to the above property on pop up the  when ever user tries to enter value in the textbox and hits enter, the radbutton assosiated with text box is not being click ( where as its was taking if we do not use the above property), the following event is fired and its forced to insert the record. "PerformInsert" its the command name for the save button of pop up.
Even though we have validation applied on the pop up it still goes to cs page.

We tried to handle the same using Javascripts but it fails as it forced to over write that property.

we did tried to over write the below thigns

args._eventTarget

args._postbackControlClientID

args.EventTarget

to acheive the target event of ADD button rather its taking Save button even and performs the action.

2) Also we are getting e.CommandName but we are not able to use e.CommandSource.

Please suggest us on the above .

Thanks in advance.
Eyup
Telerik team
 answered on 02 Oct 2012
1 answer
129 views
Hi

Can anyone shed any light on this, or am I alone...?

I have a Grid where clicking an item opens a detailed view in a RadWindow. It typically needs vertical scrolling to see all the content.

All is well in Chrome, Firefox, and IE9 ,  but Safari does not allow scroll with gesture or scroll bar, so the last few lines of text cannot be seen.

I am using Safari 6.01 to view the site.
OS of my machine is Mountain lion (10.8.2) on imac. 

Website uses Q2 2010 control set, running on asp.net 4.0/windows server 2008

Is there a work around?

Thanks

Clive
Marin Bratanov
Telerik team
 answered on 02 Oct 2012
1 answer
113 views
I have a radGrid with the custom edit form. I have to run a few javascripts that would validate the fields when the user clicks the edit button. For eg. I have a user data that has username, password and other personal details. So, when I click edit I want to run a script that would validate the values fields and update the error labels on the form.
Marin
Telerik team
 answered on 02 Oct 2012
4 answers
159 views
Hi Telerik Team,

Would like to ask some assistance if there's a way to make the uploaded files clickable using the RadAsyncUpload.
E.g 
    I uploaded a file Sample.pdf, when successfully uploaded, i want to click that file and download it.


Thank you in advance.
Charm
Plamen
Telerik team
 answered on 02 Oct 2012
1 answer
60 views
I am binding radgrid on client side with AllowPaging ="true" and pagesize=5. and the grid template contains a radbutton,

<telerik:GridTemplateColumn HeaderStyle-Width="120px" ItemStyle-Width="120px">
  <ItemTemplate>
       <telerik:RadButton ID="radBtnShort"
        runat="server"
        ToolTip="click to shortlist"             
        Text="select"
        OnClientClicking="onShortListClick">
         </telerik:RadButton>
    </ItemTemplate>
</telerik:GridTemplateColumn>


When user select the row by clicking on this button. Again the grid binded.. This works fine with page 1. If i select the row on second button then grid is rebinded and page 1 is selected. 

Maria Ilieva
Telerik team
 answered on 02 Oct 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?