I want to create a range bar chart for Task Schedule. I would like to use Rad Html chart for that. I have tasks list and their respective planned start date - end date and Actual start date - end date. So I tried to plot the chart with Rad Html chart but, it's Y-Axis is not accepting date type of value. it is only allowing decimal type of values.
So please help me, how it can be achieved. I have attached image, which shows how the chart should be displayed.
Hello Everyone,
I'm using a custom AsyncUploadHandler, where I process uploaded files and save into my database
I do it this way because users may upload hundreds of files at once, and I want to process them as they are uploaded, instead of all at once
Currently some heavy users have to wait ~15 minutes or so for all of their files to upload, before they can trigger a postback where I show a summary of the uploaded files
If possible, I want to return a small text summary for a file in the AsyncUploadHandler, which would be shown immediately to the user after each file is uploaded. This way, they can quickly see which files have unusual issues among their list of uploads
I know there is server interaction after each AsyncUploadHandler 'Process' function runs. After the AsyncUploadHandler 'Process' function runs, the little client icon indicator turns green, showing it uploaded successfully. Can I pass a small text string to be displayed next to an uploaded file?
RadComboBox resource = (RadComboBox)e.Container.FindControl("ResourceInput"); |
resource.Skin = _skin; |
resource = LoadResources(resource); |
resource.SelectedIndexChanged += new RadComboBoxSelectedIndexChangedEventHandler(resource_SelectedIndexChanged); |
Hello,
we have purchase the devcraft Q3 2014 (complete) and i am using it for .netWebForms.
After upgrading the ui through Visual Studio 13, to Q2 2015, tooltip stop working fro Greek Language,. even for a siple page:
<asp:LinkButton ID="LinkButton1" runat="server">press here!</asp:LinkButton>
<telerik:RadToolTip ID="RadToolTip1" runat="server" Text="Greek Text here" TargetControlID="LinkButton1"></telerik:RadToolTip>
(Greek text example = "Τέστ")
If i change the text to eng chars, the tooltip works perfect.
Our license subscription is over now.
Please inform me, if there is any bug?
I try in both website and web application. I create new site/project
I also try to update the bin folder in my projects, with the fresh telerik dlls, but without Luck.
*I have big problem in my projects, cause i use your bootstrap skin. If i ll go back to v2014, tooltip is working but i get errors because the skin doesnt exhist.
I have a page with a RadGrid, and on each row there is a link which opens a RadWindow. The window is opened via client side scripting below:
function
ShowSecurityForm(id, rowIndex) {
var
size = 80;
var
browserWidth = $telerik.$(window).width();
var
browserHeight = $telerik.$(window).height();
var
width = Math.ceil(browserWidth * size / 100);
var
height = Math.ceil(browserHeight * size / 100);
var
grid = $find(
"<%= rgGroups.ClientID %>"
);
var
rowControl = grid.get_masterTableView().get_dataItems()[rowIndex].get_element();
grid.get_masterTableView().selectItem(rowControl,
true
);
var
oWnd = window.radopen(
"DocumentSecurity/"
+ id,
"radSecurity"
);
oWnd.setSize(width, height);
oWnd.center();
return
false
;
}
The data in the window is also in a RadGrid and sometimes scrolls off the bottom of the RadWindow (based on the number of rows), is there a way to enable vertical scrolling in the RadWindow? I've applied CSS to have "overflow: scroll !important" on both the RadWindow and on the RadGrid and it doesn't work.
I've also set the AutoSize property of the RadWindow (before I had the window size calculation in the above JS) and it only displays a RadWindow that is about an inch by an inch and I can't see anything.
Hi admins,
I'm very fresher of radChart
but there's any way for me to make a chart like this (example)?
the Make & female is also can stackable but I tried several way it seem still not.
Hope to see your opinion soon.
I'm using Q1 2015 Telerik ASP. Net Ajax, ver: 2015.1.225.40
I'm binding data in server side.
If a do a grid.select(row1), and then do a grid.select(row2), I mean to switch the selection from row1 to row2. But this doesn't happen; both rows are selected. To achieve the switching, I need to do a grid.clearSelection() before selecting again, but that fires the change event 2 times.
How can i select one row at a time programatically? By manually clicking on rows, the selection switches, and change event is only fired once. So I'm thinking there has to be a way to reproduce that programatically as well.
I have a question regarding the proper way to attach an onfocus client-side event so it will generate on the input tag rather than the parent div tag (because it doesn't fire on the div tag) for a GridDropDownColumn?
I am currently attempting this in the PreRender event for the grid since I am placing every item in the grid into edit mode. But, I can't figure out how to get the onfocus to generate on the input tag containing the text for the GridDropDownColumn. Any help would be greatly appreciated.