Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
87 views

Hi,

We are using Telerik RadGrid in our WEB application and its version is 2016.1.225.45.

When we are setting the page size to 1000, it will throw an error when click on each page.After this error occurred no other functionality works as earlier.we need to refresh the entire page in order to works as earlier .

It is working fine up to page size 650. 

Herewith attaching the screen shot of script error occurred when page index change event fires.

Can you please provide a solution for this error ?

 

Attila Antal
Telerik team
 answered on 12 Sep 2018
1 answer
129 views

I have a RadGrid with Batch EditMode wherein I have two RadCombobox 'ProdID' and 'ProdDescription' .

On the click of Add New Button in GridDropDownColumn which is Combobox which populates the first Comobox(ProdID).On the IndexChange of ProdID I need to grab the selected value and query upon database to fetch the values of second RadCombox(Prod Description)

Please tell me how to achieve this with code sample

Marin Bratanov
Telerik team
 answered on 12 Sep 2018
1 answer
195 views

I have a RadGrid with Batch EditMode wherein I have two RadCombobox 'ProdID' and 'ProdDescription' .

On the click of Add New Button in GridDropDownColumn which is Combobox which populates the first Comobox(ProdID).On the IndexChange of ProdID I need to grab the selected value and query upon database to fetch the values of second RadCombox(Prod Description)

Please tell me how to achieve this with code sample
Marin Bratanov
Telerik team
 answered on 12 Sep 2018
5 answers
689 views

I have a need for my image to be 100% width of the screen, and the height auto adjust based on the width.

I've got it working as desired using the below, the image height adjust with the width for different window sizes.
But, the animations don't work, the image simply disappears.  If I don't have the .rigItemBox class as shown below, the animations do work, but the image doesn't resize as desired.

Any Suggestions?

<form id="form1" runat="server">
           <style type="text/css">
            html, body, form {
             margin: 0px !important;
        }
            /*Resize of the Image works as desired when the browser window is resized, but it breaks Animations, the image disappears*/
        .rigItemBox {
            height: 100% !important;
            width: 100% !important;
        }
        .RadImageGallery {
            background-color: transparent !important;
        }
        .rigToolbar {
            display: none;
        }       
        .rigActiveImage img {
             padding: 0px !important;
             width: 100% !important;
        }
               
        </style>
         <script type="text/javascript"> // Auto start the main carousel/slideshow
            function pageLoad() {
                $find('<%=RadImageGallery1.ClientID%>').playSlideshow();
            }
        </script>
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        </telerik:RadScriptManager>
        <div>A div with some text above our Image Gallery</div>
         <telerik:RadImageGallery ID="RadImageGallery1" runat="server" LoopItems="True"  Width="100%"
            ToolTip="Click to View All Featured Products/Projects" AppendDataBoundItems="True" ImagesFolderPath="~/Images/Projects/">
            <ThumbnailsAreaSettings Mode="ImageSlider" />
            <ImageAreaSettings Width="100%" ResizeMode="Fit" ShowDescriptionBox="false" />
            <ToolbarSettings Position="None" />
            <ClientSettings>                              
                <AnimationSettings SlideshowSlideDuration="3000">
                    <NextImagesAnimation Speed="1500" Type="Fade" />
                    <PrevImagesAnimation Speed="1500" Type="Fade" />
                </AnimationSettings>
            </ClientSettings>
        </telerik:RadImageGallery>
        <div>A div with some text below our Image Gallery</div>       
    </form>

Vessy
Telerik team
 answered on 12 Sep 2018
10 answers
2.1K+ views
Hai,

          Can anyone pls tell me how to get the Datakeynames in Item DataBound Event?Whether i need to give the DataKeyNames in Rad Grid or in Master Table View? Pls Reply as soon as Possible
Kiranmayee
Top achievements
Rank 1
 answered on 11 Sep 2018
3 answers
235 views

I have a radgrid with an ASCX in edit mode I cancel the default operation, to pass some initial values to the control. But the ASCX appears in the first fial as if it were in insert.

else if (e.CommandName == "Edit")
        {
            GridEditableItem item = (GridEditableItem)e.Item;
 
            e.Item.OwnerTableView.ClearEditItems();
            e.Canceled = true;
 
            System.Collections.Specialized.ListDictionary newValues = new System.Collections.Specialized.ListDictionary();
            newValues["IdHotel"] = VALUE
            newValues["IdPaqueteHotelDetalle"] = VALUE
 
            e.Item.OwnerTableView.InsertItem(newValues);
            e.Item.OwnerTableView.IsItemInserted = false;
            e.Item.OwnerTableView.EditFormSettings.UserControlName = "Controles/PaqueteHotelDetalle.ascx";
        }
Tsvetomir
Telerik team
 answered on 11 Sep 2018
3 answers
479 views
Hi,
When using the new RadClientExportManager feature to export an entire HTML page to PDF, is it possible to add headers and footers to each page of the resulting PDF file (like for a title or for page numbers) when the resulting file is multiple pages?

Thanks.
Tanya
Telerik team
 answered on 11 Sep 2018
13 answers
500 views
hi
i used usercontrol as editformsetting
like this:
    <EditFormSettings UserControlName="~/UserControls/Permission.ascx" EditFormType="WebUserControl">
                    <EditColumn UniqueName="EditCommandColumn1">
                    </EditColumn>
                </EditFormSettings>
i have textbox and treeview in usercontrol
i want when i click "Edit" in row fill textbox and treeview with datakeyname in grid
how can i do these?
thanks
Kiranmayee
Top achievements
Rank 1
 answered on 11 Sep 2018
0 answers
181 views

Hi  everyone,

I have implemented the RadProgressArea in my ASP.NET WebForms Sharepoint web application in which i am parsing an excel file and ingesting each excel row into my system and try to use the RadProgressArea to track the progress of the import process. for that I'am using a RadAsyncUpload to upload the excel file and an 'Import' Botton to process the selected file and ingest it into the system.

 

The problem I am facing here, is that each time after restarting the web server IIS and click the import botton the RadProgressArea is not displayed and the page is on loading mode until the file import processing is finished. Then the RadProgressArea start to be shown  without any problem for further import click.

I need to know why the RadProgressArea  is not displayed for the first time when my IIS is restared and start to work fine later on and what could be the possible solution for my probelm.

Here the configuration I m using in my both Dev and Integration environments :

In side  </system.webServer>

<p><handlers>    </p><p><add name="Telerik.Web.UI.WebResource" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2016.3.1027.45, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /><br>      <add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.axd" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2016.3.1027.45, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /><br>      <add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Version=2016.3.1027.45, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" preCondition="integratedMode" /><br>      <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI, Version=2016.3.1027.45, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" preCondition="integratedMode" /><br>      <add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Version=2016.3.1027.45, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" preCondition="integratedMode" /><br>   </handlers></p>

 

And add location to my web config like that :

<location path="Telerik.RadUploadProgressHandler.ashx"><br>    <system.web><br>      <authorization><br>        <allow users="*" /><br>      </authorization><br>    </system.web><br>  </location><br>  <location path="WebResource.axd"><br>    <system.web><br>      <authorization><br>        <allow users="*" /><br>      </authorization><br>    </system.web><br>  </location>

In my aspx page i am using the RadProgressArea as :

<p><span id="pnlActions" runat="server"><br><telerik:RadButton ID="btnImport" Text="Import" OnClick="btnImport_Click" OnClientClicked="function(button, args){hideRadBtn();return true;}"<br> runat="server" Skin="Web20" RenderMode="Lightweight"><br><Icon PrimaryIconCssClass="rbDownload2" PrimaryIconLeft="4" PrimaryIconTop="2"></Icon><br>                                        </telerik:RadButton><br><br><telerik:RadButton ID="btnNew" Text="New import" OnClick="btnNew_Click" Visible="false"<br> runat="server" Skin="Web20" RenderMode="Lightweight"><br><Icon PrimaryIconCssClass="rbAdd2" PrimaryIconLeft="4" PrimaryIconTop="2"></Icon><br></telerik:RadButton><br><br><telerik:RadProgressManager ID="RadProgressManager1" runat="server" /><br><telerik:radprogressarea id="RadProgressArea1" runat="server" style="text-align: center" DisplayCancelButton="False"<br>progressindicators="FilesCountBar,<br>FilesCount,<br>FilesCountPercent,<br>SelectedFilesCount,<br>CurrentFileName,<br>TimeElapsed,<br>TimeEstimated"><br></telerik:radprogressarea><br></span></p><p></p>

 

Thanks a lot for your support

Youness

Youness
Top achievements
Rank 1
 asked on 11 Sep 2018
2 answers
187 views

<tlk:RadAutoCompleteBox runat="server" ID="cmb_numDep" EmptyMessage="Taper ..."

     InputType="Text"Width="298px"TextSettings-SelectionMode="Single"  AutoPostBack="True"

     EnableClientFiltering="true"DropDownHeight="150"></tlk:RadAutoCompleteBox>

The AutoPostBack does’t work !! I want to keep clientFiltring enabled and launch postback when selecting value !

Is their a way to do it without using JavaScript ?

Peter Milchev
Telerik team
 answered on 11 Sep 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?