Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
284 views
Hi,
         I wanted to upload large files using the RadEditor.

So set this property

 
<DocumentManager MaxUploadFileSize="4294967296"/> 


But it gives error

Cannot create an object of type 'System.Int32' from its string representation '4294967290' for the 'MaxUploadFileSize' property

Please help.

Avi


Georgi Tunev
Telerik team
 answered on 01 Oct 2009
8 answers
171 views
The Visual Style Builder appears to be broken.  I've tried both IE and firefox and they are both throwing the same errors.  Anyone else having trouble?
Alex Gyoshev
Telerik team
 answered on 01 Oct 2009
1 answer
70 views
Dear All

I am using rad sheduler , every thing is working fine at my end.

Can any body suggest me how to present the data in a day view in two slots as  "AM & PM", instead of hourly slots.

If anybody have an idea , please share with me.

Thanks in advance
Krishna Kishore
Princy
Top achievements
Rank 2
 answered on 01 Oct 2009
1 answer
303 views

Hi, im using the ObjectDataSource to bind Class Objects to the RadGrid.

Class

Public Function ObtenerCliente(ByVal CLI_ID As IntegerAs Cliente  
        Dim Cli As New Cliente  
        Dim Dt As DataTable = ListarClientes(CLI_ID)  
        If Not Dt.Rows.Count = 0 Then 
            Mappear(Dt.Rows(0), Cli)  
        End If 
        Cli.telefono = ObtenerTelefonos(CLI_ID)  
        Cli.domicilio = ObtenerDomicilios(CLI_ID)  
        Return Cli  
    End Function 
    Public Function ObtenerClientes() As List(Of Cliente)  
        Dim lst_Cliente As New List(Of Cliente)  
        Dim Cli As New Cliente  
        Dim Dt As DataTable = ListarClientes(0)  
        For Each Row As DataRow In Dt.Rows  
            lst_Cliente.Add(ObtenerCliente(CInt(Row("CLI_ID"))))  
        Next 
        Return lst_Cliente  
    End Function 

Page

    <telerik:radgrid runat="server" id="ClienteListado" AllowPaging="True"   
        AllowSorting="True" DataSourceID="ods_Cliente" GridLines="None" Skin="WebBlue"   
        AutoGenerateColumns="False"  >  
    <MasterTableView CellSpacing="-1" DataSourceID="ods_Cliente">  
        <Columns>  
            <telerik:GridBoundColumn DataField="CLI_ID" HeaderText="Cod" ReadOnly="true"></telerik:GridBoundColumn>  
            <telerik:GridBoundColumn DataField="CLI_RAZONSOCIAL" HeaderText="Razonsocial"></telerik:GridBoundColumn>  
            <telerik:GridBoundColumn DataField="CLI_CUIT" HeaderText="Cuit"></telerik:GridBoundColumn>  
            <telerik:GridBoundColumn DataField="CLI_EMAIL" HeaderText="Email"></telerik:GridBoundColumn>  
            <telerik:GridDropDownColumn DataField="CLI_CIVA_ID" HeaderText="IVA" DataSourceID="ods_Civa" ListTextField="CIVA_NOMBRE" ListValueField="CIVA_ID"></telerik:GridDropDownColumn>  
            <telerik:GridEditCommandColumn HeaderText="Editar" EditText="Editar" CancelText="Cancelar" ></telerik:GridEditCommandColumn>  
        </Columns>  
    </MasterTableView>  
    </telerik:radgrid>      
<asp:ObjectDataSource ID="ods_Cliente" runat="server"   
    SelectMethod="ListarClientes" TypeName="ClienteManager">  
    <SelectParameters>  
        <asp:Parameter DefaultValue="0" Name="ID" Type="Int32" />  
    </SelectParameters>  
</asp:ObjectDataSource> 

What I want is to retrieve the Class Object Binded to the current GridViewRow when the 

ClienteListado.UpdateCommand is fired.

Any idea?

 

i ve tried this but didnt work

 

 

 

Protected Sub ClienteListado_UpdateCommand(ByVal source As ObjectByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles ClienteListado.UpdateCommand  
 
   MsgBox(TryCast(e.Item.DataItem, Cliente).nombre)  
End Sub 
 

 

 

Regards.

Geoorge

Princy
Top achievements
Rank 2
 answered on 01 Oct 2009
3 answers
131 views
Hi,

I have a custom control i.e, a combo box which encapsulates couple of RadDatePicker, one for selecting a from date and another for selecting to date as well as a couple of link button's to Apply and Clear filter. I am using this custom control inside a grid view to sort columns by filtering from and to date.

This was working fine in the previous releases but recently we had upgraded the Telerik Controls to the newest version available and since then we are facing issues with display and certain functional issues. I tried to set the skin to Default skin for all the associated controls but it did not help. I checked if any methods or properties were obsolete but it did not help as well as all the properties and methods are updated.

Please help me in resolving this issue.

Thanks and Regards,
Damodar
Iana Tsolova
Telerik team
 answered on 01 Oct 2009
1 answer
147 views
I was just wondering why the FormDecorator control in Visual Style Builder doesn't have the ability to change the background used for the styled buttons. It has everything else, but not the buttons. Why?

Thanks.
Alex Gyoshev
Telerik team
 answered on 01 Oct 2009
5 answers
215 views
Hello,

With radeditor, is there any option like "accept 21 characters in a line. if character length > 21 go to a new line automatically". İ searched the forum but couldnt find an example about it. My scenario is like that :

With radeditor, is<br/>
there any option like<br/>
"accept 21 characters<br/>
in a line. <br/>
if character length...
 
If there is any example or suggestion, i am waiting for them (if there is any possibility of achieving this scenario) .   (:

i use these in development environment

RadControls version

RadControls for ASP.Net Ajax

.NET version

3,5

Visual Studio version

2008

programming language

C#

CSS                    

Validation 2.1

Browser
Version                   

Changes To Client



Thanks in advance
rck
Top achievements
Rank 1
 answered on 01 Oct 2009
1 answer
76 views
Hi,
    We have used telerik Radcontrols for AJAX ASP.net version Q2 2008.
We have used RadDatePicker I want to set "RadDatePicker1.PopupDirection" property but this property is not available in Q2 2008 version. How to implement this functionality or how to set this property in Version Q2 2008 ?

Please give your reply. 

Thankssssssssss, 
Shinu
Top achievements
Rank 2
 answered on 01 Oct 2009
1 answer
199 views
We are working with a developer to build online tables using RadGrid. I am not a developer but looking for information about RadGrid dataset size limitations.  We have a huge dataset that is 88 fields wide.  Ideally, we'd like to give online users access to view ALL 88 fields for a limited number of records on the same web page application.  Is there a way to do this?  We've been experimenting with the scrolling and screen freeze features but encounter problems when trying to display all 88 fields across same page.
Sebastian
Telerik team
 answered on 01 Oct 2009
1 answer
163 views
I have created a page with radgrid based on this sample code. 
http://demos.telerik.com/aspnet-ajax/grid/examples/client/databinding/defaultcs.aspx


1. when the screen initially loads I want to immediately filter by 3 columns using some default values. How do I setup the column filters to do this?  Can you show me a sample of how to manually build a filterExpressions in javascript, or to add additional filters to it after I do a "get_filterExpressions()".

2. How do I now implement edit of the grid?  I can't seem to put the grid in edit mode.  I have tried looking at other samples that do this, and combine it into here, but I can't get it to work.  When I add an edit column command, and click this, nothing happens.  What is the magic that puts the column into an edit mode.  I am trying to understand if the radgrid controls does this automatically, or I have to code for it.

3. Assuming I can get the edit mode working.  Now, I need to save the data back.  How would I do this?  Keeping in mind my screen is using above sample so I have a disconnected set, that I now need to figure out what is changed and call a web service to persist the changes.

I am using v2009.2.701.35 of Telerik.Web.UI
Sebastian
Telerik team
 answered on 01 Oct 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?