Hello,
How can I remove week numbers or GridDateTimeColumn filter please?
When item have long word data value does not fit and goes beyond
Input data: Value to be displayed in grid - "MylongLongLongLongWord cut"
Actual Result: in my grid fiels i see in first line "MylongLongLo" in the second "cut".
Expected result: in first line "MylongLongLo" in the second "ngLongWord cut".
How to make text wrap or resolve this issue?
Hello,
I have a grid that uses "EditForms" to edit a record. What I would like to achieve is to disable filtering while the grid is in edit mode (both for adding a new record or editing an existing one)
Thank you,
Marc
Searching the forums seems quite cumbersome. The following are major issues that I am encountering and would like to know if there are workarounds.
Hi everyone,
I am trying to implement a behavior somehow like https://docs.telerik.com/devtools/winforms/controls/pdfviewer/features/digital-signature on this link but on asp.net ajax. I need to prompt the user to sign the pdf file and then save it to my database. My problem is how to add the "PdfViewerElement.AllowSignatureDialog" on asp.net ? It seems like it's working only in Winforms. Is there any similar control to have the same behavior and ask the user to upload a pfx file and a password ?
Thank you !
Hello,
I have some javascript code hooked up to the RibbonBar OnClientButtonClicking event. There is a confirm() method to let the user confirm the action of the RibbonBar button. The result is a parameter for args.set_cancel(). It works nicely:
Now I want to replace the browser confirm popup box with custom jQuery dialog. But even when I use async/await and clearly see that the javascript function stops and waits for the user response, the RibbonBar goes on and continues with the action before args.set_cancel is called.
Is there a way to get around this?
Hi,
Why is the following only working with Flow and not with List:
<telerik:SiteMapLevelSetting Level="1" ListLayout-RepeatDirection="Vertical" Layout="List">
<NodeTemplate>
<asp:HyperLink ID="HyperLink1" CssClass="rsmlink" NavigateUrl='<%# DataBinder.Eval(Container.DataItem, "linkto") %>' Text='<%# DataBinder.Eval(Container.DataItem, "description") %>' runat="server"></asp:HyperLink>
</NodeTemplate>
<SeparatorTemplate><hr /></SeparatorTemplate>
</telerik:SiteMapLevelSetting>
I need to create separators between the items...
Marc
Hi Team,
I have a requirement where I need to create a dynamic editable grid inside a repeater record. I have referred the following telerik links to do the implementation:
https://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/batch-editing/defaultvb.aspx?show-source=true
https://docs.telerik.com/devtools/aspnet-ajax/controls/grid/data-editing/commanditem/command-item-template#how-to-customize-the-add-new-recordrefresh-text-in-the-commanditem-area
However, the javascript call to get_batchEditingManager method is not working for the RadPushButton under CommandItemTemplate. Please note that the difference in my implemenation is that the RadGrid is dynamically bound and is nested inside a repeater. Please refer the attached code snippet for your reference.
Regards,
Nisheet
Hello,
when I call the javascript function set_contentUrl, then Google Chrome open a new tab. This is since today, it seems to be after the update of Chrome 75.0.3770.90.
Does anybody know a solution for this?
All help would be appreciated.
When exporting a RadGrid to excel, how do I get the backcolor of my rows to not extend infinitely. My RadGrid has 11 columns but when I export to excel, the backcolor of my alternateitemstyle extends past 11 columns. This is my RadGrid code:
<
telerik:RadGrid
ID
=
"On_Time_Receipt_Summary"
runat
=
"server"
RenderMode
=
"Lightweight"
Height
=
"700px"
Width
=
"1300px"
ShowFooter
=
"true"
OnCustomAggregate
=
"On_Time_Receipt_Summary_CustomAggregate"
OnExportCellFormatting
=
"On_Time_Receipt_Summary_ExportCellFormatting"
>
<
ClientSettings
>
<
Scrolling
AllowScroll
=
"True"
UseStaticHeaders
=
"true"
/>
<
Resizing
AllowColumnResize
=
"true"
AllowRowResize
=
"true"
ClipCellContentOnResize
=
"false"
ResizeGridOnColumnResize
=
"true"
/>
</
ClientSettings
>
<
ExportSettings
ExportOnlyData
=
"true"
Excel-FileExtension
=
"xls"
Excel-Format
=
"ExcelML"
FileName
=
"On_Time_Receipt_Summary"
OpenInNewWindow
=
"true"
UseItemStyles
=
"true"
></
ExportSettings
>
<
MasterTableView
AutoGenerateColumns
=
"false"
>
<
HeaderStyle
BackColor
=
"#839DBE"
BorderStyle
=
"Solid"
Font-Bold
=
"False"
Wrap
=
"False"
ForeColor
=
"White"
Font-Names
=
"Arial"
Font-Size
=
"8pt"
BorderWidth
=
"1px"
Height
=
"50px"
/>
<
ItemStyle
BackColor
=
"White"
Font-Size
=
"8pt"
Font-Names
=
"Arial"
ForeColor
=
"Black"
Wrap
=
"False"
/>
<
AlternatingItemStyle
BackColor
=
"#e1e6ef"
Font-Size
=
"8pt"
Font-Names
=
"Arial"
ForeColor
=
"Black"
Wrap
=
"False"
/>
<
FooterStyle
BackColor
=
"#839DBE"
BorderStyle
=
"Solid"
Font-Bold
=
"False"
Wrap
=
"False"
ForeColor
=
"White"
Font-Names
=
"Arial"
Font-Size
=
"8pt"
BorderWidth
=
"1px"
Height
=
"25px"
/>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"Vendor"
HeaderText
=
"Vendor"
HeaderStyle-Width
=
"65px"
FooterText
=
"Total:"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
DataField
=
"Vendor Name"
HeaderText
=
"Vendor Name"
HeaderStyle-Width
=
"225px"
></
telerik:GridBoundColumn
>
<
telerik:GridNumericColumn
DataField
=
"Total Receipt Lines"
HeaderText
=
"Total Receipt Lines"
HeaderStyle-Width
=
"50px"
DataFormatString
=
"{0:#,##0;}"
Aggregate
=
"Sum"
>
<
ItemStyle
HorizontalAlign
=
"Right"
/>
<
FooterStyle
HorizontalAlign
=
"Right"
/>
</
telerik:GridNumericColumn
>
<
telerik:GridNumericColumn
DataField
=
"Total Received Qty"
HeaderText
=
"Total Received Qty"
HeaderStyle-Width
=
"65px"
DataFormatString
=
"{0:#,##0;}"
Aggregate
=
"Sum"
>
<
ItemStyle
HorizontalAlign
=
"Right"
/>
<
FooterStyle
HorizontalAlign
=
"Right"
/>
</
telerik:GridNumericColumn
>
<
telerik:GridNumericColumn
DataField
=
"Cost Amount"
HeaderText
=
"Cost Amount"
HeaderStyle-Width
=
"70px"
DataFormatString
=
"{0:$#,##0;}"
Aggregate
=
"Sum"
>
<
ItemStyle
HorizontalAlign
=
"Right"
/>
<
FooterStyle
HorizontalAlign
=
"Right"
/>
</
telerik:GridNumericColumn
>
<
telerik:GridNumericColumn
DataField
=
"On Time"
HeaderText
=
"On Time"
HeaderStyle-Width
=
"50px"
DataFormatString
=
"{0:#,##0;}"
Aggregate
=
"Sum"
>
<
ItemStyle
HorizontalAlign
=
"Right"
/>
<
FooterStyle
HorizontalAlign
=
"Right"
/>
</
telerik:GridNumericColumn
>
<
telerik:GridNumericColumn
DataField
=
"On Time Pct"
HeaderText
=
"On Time Pct"
HeaderStyle-Width
=
"50px"
UniqueName
=
"OnTimePct"
Aggregate
=
"Custom"
FooterAggregateFormatString
=
"{0:0%}"
>
<
ItemStyle
HorizontalAlign
=
"Right"
/>
<
FooterStyle
HorizontalAlign
=
"Right"
/>
</
telerik:GridNumericColumn
>
<
telerik:GridNumericColumn
DataField
=
"On Time 90% Fill Rate"
HeaderText
=
"On Time 90% Fill Rate"
HeaderStyle-Width
=
"65px"
DataFormatString
=
"{0:#,##0;}"
Aggregate
=
"Sum"
>
<
ItemStyle
HorizontalAlign
=
"Right"
/>
<
FooterStyle
HorizontalAlign
=
"Right"
/>
</
telerik:GridNumericColumn
>
<
telerik:GridNumericColumn
DataField
=
"On Time 90% Fill Rate Pct"
HeaderText
=
"On Time 90% Fill Rate Pct"
HeaderStyle-Width
=
"65px"
UniqueName
=
"OnTimeFillRatePct"
Aggregate
=
"Custom"
FooterAggregateFormatString
=
"{0:0%}"
>
<
ItemStyle
HorizontalAlign
=
"Right"
/>
<
FooterStyle
HorizontalAlign
=
"Right"
/>
</
telerik:GridNumericColumn
>
<
telerik:GridBoundColumn
DataField
=
"Purchaser"
HeaderText
=
"Purchaser"
HeaderStyle-Width
=
"100px"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
DataField
=
"Responsibility Center"
HeaderText
=
"Responsibility Center"
HeaderStyle-Width
=
"100px"
></
telerik:GridBoundColumn
>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>