Div.RadDatePicker .riTextBox {width: 150px !important;
}Greetings,
I am utilizing FileExplorer, including the built-in async upload feature. When you click Upload on the FileExplorer toolbar, a window is displayed, allowing users to select files on their local machines, and upload them to our Internet site.
I would like to know if it is possible to modify the window that is displayed by the Upload toolbar button. We find that some users are confused by this window. They seem to grasp the idea of clicking [Select] and picking files they wish to upload. The confusion comes as they watch the progress bar and the dot change color from yellow to green. Some users think the upload is complete at that point, and they often click the X in the upper-right of the window, instead of clicking the [Upload] button at the bottom of the window. Of course, when they click the X instead of the [Upload] button, their files do not appear in FileExplorer. So I would like to modify the upload window and make it more obvious as to what must be done in order to have a more successful experience.
For starters, I would like to hide the X in the upper-right of the upload window. Then I would like to add a label on the window that reads something like, “Step 1: Click [Select] to choose the files to upload.” It would be nice if the progress of each file appeared between the [Select] button and the [Upload] button.
Since the progress bar and green dot give some users the impression that the files are already uploaded, I would like to add another label that reads, “Click [Upload] to complete this process”. And I would like to change the text of the Upload button to read [OK], instead of [Upload].
And since I would like to hide the X in the upper-right, I would like to add a [Cancel] button next to the [OK] button.
Are any of these modifications possible? If so, can you point me to some examples that I can use to get started?
Thank you,
Steven
<telerik:RadHtmlChart runat="server" ID="RiskLevelsChart" Height="400px" Width="400px" Transitions="true" RenderMode="Lightweight" Skin="Forest"> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <ChartTitle> <Appearance Align="Center" BackgroundColor="White" Position="Top"></Appearance> </ChartTitle> <Legend> <Appearance BackgroundColor="White" Position="Right" Visible="true"></Appearance> </Legend> <PlotArea> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <Series> <telerik:PieSeries StartAngle="90" dataFieldY="RiskLevelCount" NameField="RiskLevelName" Name="RiskLevelName" > <LabelsAppearance Position="Circle" DataFormatString="{0} %" DataField="RiskLevelName" ClientTemplate="#=dataItem.RiskLevelName# (#=dataItem.RiskLevelCount#)"> </LabelsAppearance> <TooltipsAppearance ClientTemplate=" #=kendo.format(\'{0:P0}\', percentage)# " Visible="true" /> </telerik:PieSeries> </Series> </PlotArea></telerik:RadHtmlChart> <telerik:RadHtmlChart runat="server" ID="RiskLevelsChart" Height="400px" Width="400px" Transitions="true" RenderMode="Lightweight" Skin="Forest"> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <ChartTitle> <Appearance Align="Center" BackgroundColor="White" Position="Top"></Appearance> </ChartTitle> <Legend> <Appearance BackgroundColor="White" Position="Right" Visible="true"></Appearance> </Legend> <PlotArea> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance><%-- <Series> <telerik:PieSeries StartAngle="90" dataFieldY="RiskLevelCount" NameField="RiskLevelName" Name="RiskLevelName" > <LabelsAppearance Position="Circle" DataFormatString="{0} %" DataField="RiskLevelName" ClientTemplate="#=dataItem.RiskLevelName# (#=dataItem.RiskLevelCount#)"> </LabelsAppearance> <TooltipsAppearance ClientTemplate=" #=kendo.format(\'{0:P0}\', percentage)# " Visible="true" /> </telerik:PieSeries> </Series>--%> </PlotArea> </telerik:RadHtmlChart>Dim query = From r In AssessmentDim HighQuery = Assessment.Where(Function(x) x.RiskLevel = 3).CountDim MediumQuery = Assessment.Where(Function(x) x.RiskLevel = 2).CountDim LowQuery = Assessment.Where(Function(x) x.RiskLevel = 1).CountDim risklevels As New List(Of RiskLevel)()risklevels.Add(New RiskLevel(Master.GetTranslation("Low").ToString, LowQuery, System.Drawing.ColorTranslator.FromHtml("#9BFF00")))risklevels.Add(New RiskLevel(Master.GetTranslation("Medium").ToString, MediumQuery, System.Drawing.ColorTranslator.FromHtml("#FFE300")))risklevels.Add(New RiskLevel(Master.GetTranslation("High").ToString, HighQuery, System.Drawing.ColorTranslator.FromHtml("#FF6300")))RiskLevelsChart.ChartTitle.Text = Master.GetTranslation("RiskLevels").ToStringDim chartData As New PieSerieschartData.StartAngle = "90"chartData.LabelsAppearance.Position = HtmlChart.PieLabelsPosition.CirclechartData.LabelsAppearance.DataFormatString = "{0}"chartData.TooltipsAppearance.DataFormatString = "{0} %"For Each value As RiskLevel In risklevels Dim item As New SeriesItem item.Name = value.RiskLevelName item.YValue = value.RiskLevelCount item.BackgroundColor = value.RiskLevelColor chartData.Items.Add(item)NextRiskLevelsChart.PlotArea.Series.Add(chartData)<telerik:RadHtmlChart runat="server" ID="RiskLevelsChart" Height="400px" Width="400px" Transitions="true" RenderMode="Lightweight" Skin="Forest"> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <ChartTitle> <Appearance Align="Center" BackgroundColor="White" Position="Top"></Appearance> </ChartTitle> <Legend> <Appearance BackgroundColor="White" Position="Right" Visible="true"></Appearance> </Legend> <PlotArea> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <Series> <telerik:PieSeries StartAngle="90" dataFieldY="RiskLevelCount" NameField="RiskLevelName" Name="RiskLevelName"> <LabelsAppearance Position="Circle" DataFormatString="{0} %" DataField="RiskLevelName" ClientTemplate="#=dataItem.RiskLevelName# (#=dataItem.RiskLevelCount#)"> </LabelsAppearance> <TooltipsAppearance ClientTemplate=" #=kendo.format(\'{0:P0}\', percentage)# " Visible="true" /> </telerik:PieSeries> </Series> </PlotArea></telerik:RadHtmlChart>
Private Sub DoChart1(ByVal Assessment As List(Of ExtendedRiskAssessment))
Dim query = From r In Assessment
Dim HighQuery = Assessment.Where(Function(x) x.RiskLevel = 3).Count
Dim MediumQuery = Assessment.Where(Function(x) x.RiskLevel = 2).Count
Dim LowQuery = Assessment.Where(Function(x) x.RiskLevel = 1).Count
Dim risklevels As New List(Of RiskLevel)()
risklevels.Add(New RiskLevel(Master.GetTranslation("High").ToString, HighQuery, Color.Red))
risklevels.Add(New RiskLevel(Master.GetTranslation("Medium").ToString, MediumQuery, Color.Yellow))
risklevels.Add(New RiskLevel(Master.GetTranslation("Low").ToString, LowQuery, Color.Green))
RiskLevelsChart.ChartTitle.Text = Master.GetTranslation("RiskLevels").ToString
RiskLevelsChart.DataSource = risklevels
RiskLevelsChart.DataBind()
End Sub
An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
|
|