Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
79 views
Hi,
I have created a Radgrid with unbound columns. Value entered on Filter and filter condition has to be removed from unbound column. Its not happening.  How to achieve it ?

Thanks,
Suresh

Suresh Krishna
Top achievements
Rank 1
 answered on 05 Mar 2010
19 answers
222 views
Hi, I've read all your skinning threads on this forum and can impliment it like that. but their is a problem with that implimentation.

When I create my custom skin, I'm forced to point to individual gif images. for all the buttons. I did change the css file to show to my own sprite.PNG, an it works for the commandbar, but the add, and delete images still point to gif files. Now I can change all of them to point to different png's, but then the whole objective of reducing the http request and having a single sprite is for nothing.

See http://www.4solutions.co.za/telerik/GIF_PNG.jpg
the top is your single sprite.gif and the bottom is my custom sprite.PNG.

I can't sleep at night because of all the rastered edges on images.
How do I create a custom skin, using my own single sprite PNG file.
Like your build in styles, I just want to use ONE image for styling the whole grid, a PNG image.

(I do not the limitation that only certain browsers can use PNG-24 images, but do know how to overcome this by creating multiple transparency layers in a single PNG-8 file)
Anil Kumar Patra
Top achievements
Rank 2
 answered on 05 Mar 2010
0 answers
81 views
Hi team,

I have some problems using one RadUpload inside one UserControl loaded in one ajaxpanel MultipageView. I use the Wizard sample found in demo to load one UC. This uc use one RadUpload, but is not working this this configuration, not downloading files. If I use RadUpload directly inside the page is fine. Exist some registering problem to use RadUpload from one loaded UC.

loading as
protected void RadMultiPage1_PageViewCreated(object sender, RadMultiPageEventArgs e) 
    { 
        Control pageViewContents = LoadControl(e.PageView.ID + "CS.ascx"); 
        pageViewContents.ID = e.PageView.ID + "userControl"; 
        e.PageView.Controls.Add(pageViewContents); 
    } 
 

regards, Romi
Pierre
Top achievements
Rank 1
 asked on 05 Mar 2010
5 answers
721 views

hello to all,

                thanks again to sir shinu,

               I would to ask help once again about passing parameter from another page to the radwindow with a grid inside, here's my scenario i have one page contains textboxes that user will input numbers to search the details related to the numbers inputed, for example the user input 123 to the txtbox name TxtAccountNumber.Text then he will click the button Search coming from page  then a radwindow will popup with a grid inside then load the record coming from the database.. how can i do that i tried to put the value from session inside the page but when the radwindow pop up the parameter there is null so its means no value has been carried by my session variable. anyway here's my code. please check and revise if ever..



 

<

 

telerik:RadWindowManager ID="RadWindowManager1" runat="server">

 

 

 

 

 

<Windows>

 

 

 

 

 

<telerik:RadWindow ID="RadWindow1" runat="server" Skin ="Vista" ReloadOnShow ="true"

 

 

Modal ="true" OpenerElementID ="<%#btnSearch.ClientID%>"

 

 

Title ="Transactional" NavigateUrl ="~/CHS/CHSTransactional.aspx?Accountno='123456789'" Width ="580px" Height ="300px" >

 

 

 

 

 

</telerik:RadWindow>

 

 

 

 

 

</Windows>

 

 

</telerik:RadWindowManager>

 

 

 

sample/codes is highly appriciated. 

thanks to all  

gc_0620
Top achievements
Rank 1
 answered on 05 Mar 2010
4 answers
88 views
Any chance the Telerik team could update these to work with the latest release? Q3 2009?

Specially I really need the WebBlue one for the combobox.


Thanks,
Stephen
Stephen
Top achievements
Rank 1
 answered on 04 Mar 2010
3 answers
164 views
In IE7 browser at my client machine, all the transfer buttons of the listbox were blank.
But it shows good in IE8 and firefox. I didnt checked in IE6. (hav a look at the attachment image)

Even, the telerik online demo page for the RADlistbox has same problem in IE7.

Is there any fix for this? Or is it possible to set custom images for these buttons as an alternate?

Please Help.
Roland
Top achievements
Rank 1
 answered on 04 Mar 2010
5 answers
306 views
Can I bind a GridDropDownColumn to a List<string>?
tim
Top achievements
Rank 1
 answered on 04 Mar 2010
8 answers
372 views
Hi,

I have an aspx page that contains 4 user controls. The apsx page contains a RadAjaxManager control and each user control (.ascx) has a RadAjaxManagerProxy. Currently, I ajaxify all 4 user controls simultaneously through ajaxRequest call in the aspx page as follows:

Base.aspx :

<script type="text/javascript"
         function pageLoad(sender, eventArgs) { 
             if (!eventArgs.get_isPartialLoad()) { 
                 $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>").ajaxRequest('WidgetLoad'); 
             } 
         }       
</script>   


The argument 'WidgetLoad' gets parsed inside the ajaxRequest handler that's defined in each user control (ascx.cs). This works perfectly however some user controls take longer to update than others and thus block the updating process for the other more quicker user controls. Therefore, I would like to have each user control update independently, as soon as its ready. To do this, I tried calling 4 separate ajaxRequest methods instead of one, passing a unique ID for the user control as an argument each time. However, this does not seem to work. It seems as though it only accepts the last ajaxRequest call thus causing only one user control to update. Can you explain why we cannot call multiple ajaxRequest with same RadAjaxManager? How else can I achieve this behavior?

Jim
Jimmy Nicolacopoulos
Top achievements
Rank 1
 answered on 04 Mar 2010
2 answers
346 views
Hi All,

I am using RadControls for ASPNET AJAX Q2 2008.

I am using Radgrid.
I have given the fix width to each column in grid.
When data is greater than the column width the it wrap the text to next line.
I want to show the grid row data in one line.
ie. It should show only that data which is fit in one row of secified column width.
It should not wrap the text automatically.

Thanks.




Jason Divis
Top achievements
Rank 1
 answered on 04 Mar 2010
3 answers
206 views
hi

my footer text doesnt show on my aggregate column

here is the code:
                    <telerik:RadGrid ID="grdOrdini" DataSourceID="objDSOrd" runat="server" Width="99.7%" 
                        AutoGenerateColumns="False" PageSize="15" AllowSorting="True" AllowPaging="True" ShowHeader="true" 
                        GridLines="None" ShowStatusBar="true" AllowAutomaticUpdates="true" ShowFooter="True" > 
                        <PagerStyle Mode="NumericPages" AlwaysVisible="true"></PagerStyle> 
                        <FooterStyle Font-Bold="true" /> 
                        <MasterTableView DataSourceID="objDSOrd" DataKeyNames="CODICE" AllowMultiColumnSorting="True" 
                            Width="100%" EditMode="InPlace"
                            <Columns> 
                                <telerik:GridButtonColumn ConfirmText="Rimouvere dal Elenco degli ordini?" ButtonType="ImageButton" ImageUrl="~/img/DelCart.png" CommandName="Delete" Text="Rimouvi dal elenco" UniqueName="colDelete"
                                    <HeaderStyle Width="35px" /> 
                                </telerik:GridButtonColumn>                                
                                <telerik:GridEditCommandColumn EditImageUrl="~/img/Edit.gif" UniqueName="btnEdit" CancelText="Cancel" UpdateText="Save" EditText="Modifica"></telerik:GridEditCommandColumn>                           
                                <telerik:GridBoundColumn SortExpression="LISTINO" HeaderText="Listino" DataField="LISTINO" UniqueName="colLISTINO1" ReadOnly="true"
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn SortExpression="LISTINO" HeaderText="Listino" DataField="LISTINO" UniqueName="colLISTINO" Visible="false"
                                </telerik:GridBoundColumn>                                                 
                                <telerik:GridBoundColumn SortExpression="DTORDINE" HeaderText="Data Ordine" DataField="DTORDINE" UniqueName="colDTORDINE" DataType="System.DateTime" DataFormatString="{0: dd/MM/yyyy}" ReadOnly="true"
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn SortExpression="DTSCADENZA" HeaderText="Data Scadenza" DataField="DTSCADENZA" UniqueName="colDTSCADENZA" DataType="System.DateTime" DataFormatString="{0: dd/MM/yyyy}" ReadOnly="true"
                                </telerik:GridBoundColumn> 
                                <telerik:GridNumericColumn SortExpression="QUANTITA" HeaderText="Q.tà" DataField="QUANTITA" UniqueName="colQUANTITA"
                                </telerik:GridNumericColumn> 
                                <telerik:GridNumericColumn SortExpression="COSTOUNITARIO" HeaderText="Costo Unitario" DataField="COSTOUNITARIO" UniqueName="colCOSTOUNITARIO" DataType="System.Double" DataFormatString="{0:€ # ###.##}" ReadOnly="true"
                                </telerik:GridNumericColumn> 
                                <telerik:GridNumericColumn SortExpression="COSTOUNITARIO" HeaderText="Costo Unitario" DataField="COSTOUNITARIO" UniqueName="colCOSTOUNITARIO2" DataType="System.Double" Visible="false"
                                </telerik:GridNumericColumn>                                 
                                <telerik:GridNumericColumn SortExpression="SCONTO" HeaderText="Sconto %" DataField="SCONTO" UniqueName="colSCONTO" ReadOnly="true" DataType="System.Double" NumericType="Percent"
                                </telerik:GridNumericColumn> 
                                <telerik:GridBoundColumn  SortExpression="COSTONETTO" HeaderText="Costo Netto" DataField="COSTONETTO" UniqueName="colCOSTONETTO" DataType="System.Double" DataFormatString="{0:€ # ###.##}" ReadOnly="true" Aggregate="Sum" FooterText="Totale Netto: "
                                </telerik:GridBoundColumn >                                         
                            </Columns> 
                        </MasterTableView> 
                    </telerik:RadGrid> 

Daniel
Telerik team
 answered on 04 Mar 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?