Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
207 views

Hi All, 

 

i have a grid view and i want to have 2 question first how can i fill the drop down with data table from the c# 2nd how can i do it cascading from the c# too i will make it onselected item change but can i find the secound dropdown menu to auto fill with the new dropdown list 

 

 

ps <br> is not there its just added by code format :)

 

   <telerik:RadGrid ID="staffmanagement" runat="server" OnNeedDataSource="staffmanagement_NeedDataSource" Skin="Bootstrap" AutoGenerateColumns="false" OnInsertCommand="staffmanagement_InsertCommand" OnUpdateCommand="staffmanagement_UpdateCommand" OnDeleteCommand="staffmanagement_DeleteCommand" AllowPaging="True" ><br>                <MasterTableView CommandItemDisplay="Top" InsertItemPageIndexAction="ShowItemOnCurrentPage" CommandItemSettings-ShowRefreshButton="false" DataKeyNames="ID"><br>               <Columns><br><br>                    <telerik:GridTemplateColumn HeaderText="Department" UniqueName="DepartmentColumn" HeaderStyle-HorizontalAlign="Center"><br>                            <ItemTemplate><br>                                <asp:Label ID="Department" runat="server" Text='<%# Eval("strorg") %>'></asp:Label><br>                            </ItemTemplate><br>                            <EditItemTemplate><br>                                <telerik:RadDropDownList ID="Departmentedit" runat="server"><br>                                  <br>                                </telerik:RadDropDownList><br>                            </EditItemTemplate><br>                            <InsertItemTemplate><br>                                <telerik:RadDropDownList ID="Departmentinsert" runat="server"><br><br>                                  <br>                                </telerik:RadDropDownList><br>                            </InsertItemTemplate><br>                        </telerik:GridTemplateColumn><br></p><p>      <telerik:GridTemplateColumn HeaderText="supDepartment" UniqueName="supDepartmentColumn" HeaderStyle-HorizontalAlign="Center"><br>                            <ItemTemplate><br>                                <asp:Label ID="supDepartment" runat="server" Text='<%# Eval("strsuporg") %>'></asp:Label><br>                            </ItemTemplate><br>                            <EditItemTemplate><br>                                <telerik:RadDropDownList ID="supDepartmentedit" runat="server"><br>                                  <br>                                </telerik:RadDropDownList><br>                            </EditItemTemplate><br>                            <InsertItemTemplate><br>                                <telerik:RadDropDownList ID="supDepartmentinsert" runat="server"><br><br>                                  <br>                                </telerik:RadDropDownList><br>                            </InsertItemTemplate><br>                        </telerik:GridTemplateColumn></p><p></p><p></p><p>                        <telerik:GridEditCommandColumn ButtonType="ImageButton" HeaderStyle-HorizontalAlign="Center" UniqueName="edit" /><br>                        <telerik:GridButtonColumn ConfirmText="Delete this Staff" ConfirmDialogType="RadWindow" ConfirmTitle="Delete"  ButtonType="FontIconButton" CommandName="Delete" ColumnGroupName="APlate" HeaderStyle-HorizontalAlign="Center" UniqueName="delete" /><br><br><br><br><br>               </Columns><br>                    </MasterTableView><br><br>            </telerik:RadGrid>
Kareem
Top achievements
Rank 2
 asked on 15 Dec 2017
2 answers
138 views

How can I replace expand/collapse images of Radpanel item with some other images when RenderMode="Lightweight" ?

On expand I need to show different image and On collapse I need to show another image.

 

Below solution is not working for me because I think skin file selector is not supporting.

 

<style>
    .t-i-expand-s:before, .t-i-expand-down:before, .p-i-expand-s:before, .p-i-expand-down:before, .p-i-arrow-chevron-down:before {
        content: "\e100" !important;
    }

    .t-i-expand-n:before, .t-i-expand-up:before, .p-i-expand-n:before, .p-i-expand-up:before, .p-i-arrow-chevron-up:before {
        content: "\e101" !important;
    }
</style>

 

 

Right now my selector is like

 

.RadPanelBar .rpExpandable .rpExpandHandle 

{

display : block;

}

 

 

Arpit
Top achievements
Rank 1
 answered on 15 Dec 2017
0 answers
119 views

I have the following problem, I check the documentation and several samples for hours, I attach the images on the aligned RadMenuItem  and left position, whatever the click I need the position the first o second row the RadMenuItem should be aligned to left

In the following line of code does not allow to select the second row of the menu

.infoenergy .RadMenu_Glow .rmHorizontal .rmItem {
    position: static;
}

Franklin
Top achievements
Rank 1
 asked on 15 Dec 2017
1 answer
178 views

I'm trying to databind the pie chart to the sqldatasource, but it seems there are issues (or I'm not doing it right) with DataFieldY.  The sqldatasource will return 2 column of data as follow:
Description     cnt
7 Days            3
30 Days        37
Rest              42
24 Hour         116

Where the "Description" column I assign to "NameField" and "cnt" column I assign to DataFieldY.  Below is my code for the chart.
                            <telerik:RadHtmlChart runat="server" ID="chartRouters" Width="100%" Height="100%" Transitions="true" 
                                Skin="Silk" DataSourceID="sqlDSModem">
                                <ChartTitle Text="Router Status">
                                    <Appearance Align="Center" Position="Top">
                                        <TextStyle Color="White" />
                                    </Appearance>
                                </ChartTitle>
                                <Legend>
                                    <Appearance Position="Right" Visible="true">
                                    </Appearance>
                                </Legend>
                                <PlotArea>
                                    <Series>
                                        <telerik:PieSeries StartAngle="90" DataFieldY="Cnt" NameField="Description">
                                            <LabelsAppearance Position="OutsideEnd" DataFormatString="{0} %">
                                            </LabelsAppearance>
                                            <TooltipsAppearance Color="White" DataFormatString="{0} %"></TooltipsAppearance>
                                        </telerik:PieSeries>
                                    </Series>
                                </PlotArea>
                            </telerik:RadHtmlChart>   

when I run the code, my pie chart looked "weird" and had only 4 lines (not the chart line, but lines extending out from a single point) Looks almost lilke it is not reading the "cnt" column of the data.  

When I go to the immediate window and do the :

?chartRouters.PlotArea.Series(0).DataFieldY(0)

 

it gave me value of "c" and then DataFieldY(1) is "n" and DataField(2) is "t".  I was expecting to see the actual value when I do that, but it almost like is putting the column field name in the value instead of actual data value?  That is weird.

What is wrong?

thank you!

Frank
Top achievements
Rank 1
 answered on 14 Dec 2017
4 answers
212 views

How do you clear the selection or go back to intial state via javascript?  I can do it from codebehind but it's faster on the client side.

Thanks,

Tim

Rumen
Telerik team
 answered on 14 Dec 2017
7 answers
1.8K+ views
The web application I have developed works fine on my local machine but when I try to run it from the server it gives me the following error. I have Telerik.Web.UI.dll andTelerik.Web.Design.dll in my Bin folder.

Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. Strong name signature could not be verified.  The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)

Stack Trace:


[FileLoadException: Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. Strong name signature could not be verified.  The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)]

[FileLoadException: Could not load file or assembly 'Telerik.Web.UI, Version=2010.3.1215.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. Strong name signature could not be verified.  The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)]
   System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks) +0
   System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection, Boolean suppressSecurityChecks) +567
   System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +192
   System.Reflection.Assembly.Load(String assemblyString) +35
   System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +123

[ConfigurationErrorsException: Could not load file or assembly 'Telerik.Web.UI, Version=2010.3.1215.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. Strong name signature could not be verified.  The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)]
   System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +11565312
   System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory() +485
   System.Web.Configuration.AssemblyInfo.get_AssemblyInternal() +79
   System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig) +334
   System.Web.Compilation.BuildManager.CallPreStartInitMethods() +280
   System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException) +1167

[HttpException (0x80004005): Could not load file or assembly 'Telerik.Web.UI, Version=2010.3.1215.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. Strong name signature could not be verified.  The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)]
   System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +11697760
   System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +141
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +4866485

 

Few parts of my web.config are as follows:
<compilation debug="true">
     <assemblies>
         <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
         <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
         <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
         <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
         <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
         <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
         <add assembly="System.Speech, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
     </assemblies>
   </compilation>
 
 
<httpHandlers>
     <remove verb="*" path="*.asmx" />
     <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
     <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
     <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
     <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" verb="*" validate="false" />
   </httpHandlers>
KidSysco
Top achievements
Rank 1
 answered on 14 Dec 2017
0 answers
101 views
I've found that RadGrid filtering doesn't work when the values have a "<" (less than) character inside of the column.  Upon removing the values with the "<" sign, the filters work.  Does anyone know a fix or way around this?  It seems like an escaping bug.

Thanks,
Jason
l
Jason
Top achievements
Rank 1
 asked on 14 Dec 2017
4 answers
334 views

radGrid1.ExportSettings.Excel.Format = GridExcelExportFormat.Biff;

I want the format to be Xlsx.  But it only shows Biff, ExcelML, Html as selection.  My references of Telerk.Web.UI is pointing to

C:\Program Files (x86)\Progress\Telerik UI for ASP.NET AJAX R3 2017\Bin35\Telerik.Web.UI.dll

What do I miss?  Thanks.

Vessy
Telerik team
 answered on 14 Dec 2017
1 answer
115 views

We are looking to create a custom SharePoint web part which displays appointment data on a Scheduler. Ideally we want to return JSON format data from a WCF service and bind this to the Scheduler. We do not need to use insert / update functionality. Having had a look at some examples we're not sure where to go with this. We've looked into Data Providers but again we haven't been able to successfully implement this so far. Any help / step by step examples would be greatly appreciated.

Thanks

Peter Milchev
Telerik team
 answered on 14 Dec 2017
1 answer
165 views

Hi all,

I tried to localize RadAsyncUpload, but it looks it is not possible to translate tooltip for 'Select' button. It shows 'No file selected'. Is it possible to translate or disable it?

Thank you,

Petr

 

Petr
Top achievements
Rank 1
Iron
Iron
 answered on 14 Dec 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?