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
>
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;
}
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;
}
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!
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
<
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
>
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.
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
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