Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
98 views
Dear All!

I have a question about Bar chart. Is it possible to do a bar chart type which looks like on the picture below?
For example: 4 type of values exist in different pieces:
value 1 - 120 pieces
value 2 - 34 pieces
value 3 - 156 pieces
value 4 - 207 pieces

and I want to show it on one bar (all of the 4 values). See the attached link (picture) created with painter programme.

http://www.anda.hu/bar_chart.jpg

many thanks,
alsecz
Giuseppe
Telerik team
 answered on 17 Oct 2008
2 answers
133 views
Hi all,

I have a problem in radnumericbox in a radgrid ,while editing. When i click to edit button it says " The string was not recognized as a valid format."

Here is my code for the column, any help will be appreciated...

&<telerik:GridTemplateColumn DataField="BIRIM_FIYAT" DataType="System.Decimal" HeaderText="Birim Fiyat"SortExpression="BIRIM_FIYAT" UniqueName="BIRIM_FIYAT"
    <ItemTemplate> 
        <asp:Label ID="BIRIM_FIYATLabel" runat="server" Text='<%# Eval("BIRIM_FIYAT","{0:C}")%>'
        </asp:Label> 
    </ItemTemplate> 
    <EditItemTemplate> 
        <asp:Label ID="Label7" runat="server" Text="Birim Fiyat:"></asp:Label><br/> 
        <telerik:RadNumericTextBox ID="BIRIM_FIYATTxt" runat="server" Culture="Turkish (Turkey)" DbValue='<%# Bind("BIRIM_FIYAT") %>' Height="18px" LabelCssClass="radLabelCss_Default" Skin="Office2007" Width="100px" ToolTip="Detay Tutar GiriÅŸi Yapılır" MaxLength="10" CausesValidation="True"
        </telerik:RadNumericTextBox> 
        <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ControlToValidate="BIRIM_FIYATTxt" ErrorMessage="Fiyat Giriniz!">                  </asp:RequiredFieldValidator> 
    </EditItemTemplate> 
</telerik:GridTemplateColumn> 



umut
Top achievements
Rank 1
 answered on 17 Oct 2008
1 answer
90 views
I have a grid with a GridDropDownColumn.  How can I get access to the contents of the dropdown when inserting/updating ?

Ive found an example for textbox but cant find anything for DropDown.  Heres the code im using

protected void RadGridSecondaryCategories_InsertCommand(object source, GridCommandEventArgs e)  
        {  
            //Get the GridEditFormInsertItem of the RadGrid       
            //GridEditFormInsertItem insertedItem = (GridEditFormInsertItem)e.Item;  
 
            Telerik.Web.UI.GridDataInsertItem insertedItem = (Telerik.Web.UI.GridDataInsertItem)e.Item;  
 
            string EmployeeID = (insertedItem["EmployeeID"].Controls[0] as TextBox).Text;     
             
            string LastName = (insertedItem["LastName"].Controls[0] as TextBox).Text; // need this to be a GriDDropDown  not a textbox 
 How do I get the value in the drop down ?
Shinu
Top achievements
Rank 2
 answered on 17 Oct 2008
3 answers
111 views
Hello, I have a nested masterpage with RadTab control, depending of what tab is selected im dynamicly loading control into a panel. One of that control have a RadGrid inside. When im trying to select something i gor javascript error - Null is Null not an object, the same i got when i click collapse group. Is is b/s im doing all dynamicly ? Please help.
Jogn
Top achievements
Rank 1
 answered on 17 Oct 2008
5 answers
363 views
At the moment I am wanting to configure the spell checker to use en-GB.

By default your solution doesn't include this. To include this I would need to place this in wpresources/.......

How in your opinion should one go about deploying things like the en-GB to wpresources. The same question can also be asked for custom ToolsFile and ConfigFile.

While on a development box it is easy to drop files in the required wpresources directory, on on a farm this is not ideal, far from ideal in fact!

At the same time. Re-solutioning the solution you provide to add files isn't an easy task and paves the way for tough upgrades in the future.

I would love to hear your thoughts and opinions on this.

Kind regards
Terry


Lini
Telerik team
 answered on 17 Oct 2008
2 answers
113 views
Hi,

Are you aware that in the scheduler control in the Default skin - the "thick" line in time view doesn't align with the start of the hour on the left? Where as on all of the other skins it does?

Thanks

John
Charles
Top achievements
Rank 1
 answered on 17 Oct 2008
4 answers
93 views
I have a RADGrid on a page, the grid has 2 rows.  Im using a GridDropDownColumn to pick the items for the grid column, but the data isnt being displayed.  The 2 rows are there, but nothing is displayed in the appropriate columns (Category)

<Columns> 
                                        <telerik:GridBoundColumn DataField="ID" DataType="System.Int32" HeaderText="ID" 
                                            ReadOnly="true" Visible="false" SortExpression="ID" UniqueName="ID">  
                                        </telerik:GridBoundColumn> 
                                          
                                        <telerik:GridDropDownColumn DataField="Category"   
                                            ListTextField="Category" ListValueField="Category" HeaderText="Category" UniqueName="SecondaryCategory">  
                                        </telerik:GridDropDownColumn> 
                                    </Columns> 
 The dropdown appears when I select edit, but not in normal display mode.  Anyone know what im missing here ?
mww
Top achievements
Rank 1
 answered on 17 Oct 2008
1 answer
179 views
Below is a screen capture of what's happening:


Basically I have 10 combo boxes on a rad window.  When I click on the bottom two Rad Combo Boxes(Audio Format), they expand down and cause the Rad Window to create horizontal and vertical scroll bars.  If I click the same Rad Combo Boxes(Audio Format) again they expand up(which is the desired result).  The Rad Combo Boxes(Aspect Ratio) right above the Audio Format combo's expand up when I click on them the first time.  This just started happening with the last release of the Ajax controls.  I didn't notice this in the August release.

Below are my Rad Window Manager Settings and my Rad Combo Box settings:

            <telerik:RadWindowManager ID="RadWindowManager1" runat="server" Animation="None" 
                VisibleStatusbar="false" ReloadOnShow="false" ShowContentDuringLoad="true" 
                PreserveClientState="false" OnClientClose="popWindow_Close" ClientCallBackFunction="popWindow_CallBackFunction" 
                Behaviors="Close,Move" Modal="true"
            </telerik:RadWindowManager> 
 
 

                <label class="label"
                    Audio Format:</label> 
                <telerik:RadComboBox ID="DropDownListOutboundAudioFormat" EnableLoadOnDemand="true" EnableScreenBoundaryDetection="true" 
                    EnableItemCaching="true" runat="server" Skin="Vista" 
                    OnItemsRequested="DropDownListAudioFormat_OnItemsRequested" OnClientSelectedIndexChanged="dropDownList_CommonSelectedIndexChanged"
                </telerik:RadComboBox> 

I can provide more information as needed.

Georgi Tunev
Telerik team
 answered on 17 Oct 2008
13 answers
250 views
Hello Telerik,

By default EndDate is one day after the selected day,
I was wondering if it can be the same date?

Thank you.
Peter
Telerik team
 answered on 17 Oct 2008
1 answer
55 views
Hi,
After creating an appointment in advance insert form it is showing the current week not the scheduled appointment week.
How to rectify the issue.
Thanks,
Puru
Peter
Telerik team
 answered on 17 Oct 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?