Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
58 views
I have 3 series with stackedbar100. The third serie, the value must be above last bar. How do I do it? Other values inside.
MasterChiefMasterChef
Top achievements
Rank 2
 answered on 10 Apr 2013
1 answer
64 views




As i am developing shopping cart which i should filter items.
I want exactly below interface which should be filter items by using checkboxes or radio buttons.

Home
/
Community & Support/Developer Productivity Tools Forums/ASP.NET AJAX>Filter>Create filter for Checkbox of RadGrid

my query is which control should i use for this type of filtering , plz suggest me the control which one should i use
MasterChiefMasterChef
Top achievements
Rank 2
 answered on 10 Apr 2013
8 answers
527 views
I am trying to set up a page, where if I select an item from the first dropdown, it will populate the contents of the second one. This is based on the code from this link 

http://www.telerik.com/demos/aspnet/prometheus/ComboBox/Examples/Functionality/MultipleComboBoxes/DefaultCS.aspx

This is what I have

<rad:RadComboBox ID="radDdlOccassion" runat="server" NoWrap="false" LoadingMessage="Loading..." Skin="Vista" Width="210px"

OnClientSelectedIndexChanged="loadSentiment" OnItemsRequested="radDdlOccassion_ItemsRequested">

</rad:RadComboBox>

<br />

<label class="personalize_label">Sentitment:</label>

<rad:RadComboBox ID="radDdlSentitment" runat="server" NoWrap="false" LoadingMessage="Loading..." Skin="Vista" Width="210px"

>

</rad:RadComboBox>

Protected Sub radDdlOccassion_ItemsRequested(ByVal o As Object, ByVal e As _radWebUi.RadComboBoxItemsRequestedEventArgs) Handles radDdlOccassion.ItemsRequested

'Local variables

'Local constants

Const cstrPROC_FUNC_NAME As String = _cstrMODULE_NAME & ".radDdlOccassion_ItemsRequested"

'Try it out

Try

LoadSentitment(e.Value)

Catch ex As Exception

_strErrMsg &= _ErrorHandler.BuildErrorMsg(cstrPROC_FUNC_NAME, ex.Message & Environment.NewLine & ex.StackTrace)

Finally

End Try

End Sub

And in my external js file I have the following function

function

loadSentiment(combo, eventarqs) {

var radDdlSentitment = $find("radDdlSentitment");

var item = eventarqs.get_item();

radDdlSentitment.set_text(

"Loading...");

if (item.get_index() > 0) {

radDdlSentitment.requestItems(item.get_value(),

false);

}

else {

radDdlSentitment.set_text(

" ");

radDdlSentitment.clearItems();

}

}


I am not getting any js errors, but the itemsrequested event of my first dropdown is not being fired....so any help on this would be appreciated.

Nani
Top achievements
Rank 2
 answered on 10 Apr 2013
5 answers
117 views
Hi,
I'm using 2010Q2 and I'm trying to inheriting from RadMultiPage.
So far I had no problem inheriting from the main class, but I have some small issue when I try to create subclasses of its children: the PageViews

I tried the same approach I used for RadTabStrip / RadTab and RadTreeView / RadTreeNode and so far they are working perfectly.
I created a subclass of RadPageView and started adding instances of that subclass to a RadMultiPage.
The problem happens on postbacks: the RadMultiPage recreates instances of RadPageView and not of my subclass.

Am I making some error? Is there another way to subclass RadPageView? Is it not supported?

Best Regards, Andrea Pirola
Nencho
Telerik team
 answered on 10 Apr 2013
1 answer
190 views
In one of my modules, I have the requirement to draw a custom flowchart based on data stored in the DB.  I won't burden you with the details but suffice to say, it would be a traditional flowchart with shapes similar to this example.

At first I thought I could just use Custom CSS to change the appearance of DIVs but an investigation of this is showing this route to be rather complicated.  One definite complexity is that my client will be running IE7 & 8 for the foreseeable future, which seems to preclude the use of curved shapes, especially when they need to sit on a gradient background.

So I got to wondering if perhaps Telerik offered some control(s) to provide such functionality?  If not, all suggestions would be much appreciated!

Robert W.
Kate
Telerik team
 answered on 10 Apr 2013
1 answer
63 views

In IE10 after click the item  all the items automatically Collapsed
ver:ASP.NET AJAX Q1 2013
the code:

           <telerik:RadPanelBar ID="RadPanelbar1" runat="server" Width="150px" ExpandMode="FullExpandedItem" 
                    Height="600px" PersistStateInCookie="True" CookieName="logsmanage" >
                    <Items>
                        <telerik:RadPanelItem runat="server" Text="管理操作" ImageUrl="~/images/fixed_BuildTeam.png"  
                            Expanded="True" >
                            <Items>
                                <telerik:RadPanelItem runat="server" Text="管理首页" NavigateUrl="~/managehome.aspx"
                                    ImageUrl="~/images/bullet.gif" >
                                </telerik:RadPanelItem>
                                <telerik:RadPanelItem runat="server" Text="参数设置" NavigateUrl="~/configsettings.aspx"
                                    ImageUrl="~/images/bullet.gif" >
                                </telerik:RadPanelItem>
                                <telerik:RadPanelItem runat="server" Text="城市列表管理" NavigateUrl="~/AreaInfoManage.aspx"
                                    ImageUrl="~/images/bullet.gif">
                                </telerik:RadPanelItem>
                                <telerik:RadPanelItem runat="server" Text="系统日志管理" NavigateUrl="~/logsmanage.aspx"
                                    ImageUrl="~/images/bullet.gif" >
                                </telerik:RadPanelItem>
                                <telerik:RadPanelItem runat="server" Text="任务日志管理" NavigateUrl="~/QuartzLogsManage.aspx"
                                    ImageUrl="~/images/bullet.gif" >
                                </telerik:RadPanelItem>
                                <telerik:RadPanelItem runat="server" Text="密码修改" NavigateUrl="~/passwordmod.aspx"
                                    ImageUrl="~/images/bullet.gif" >
                                </telerik:RadPanelItem>
                            </Items>
                        </telerik:RadPanelItem>
                    </Items>
                    <ExpandAnimation Type="None" />
                    <CollapseAnimation Type="None" />
                </telerik:RadPanelBar>
Boyan Dimitrov
Telerik team
 answered on 10 Apr 2013
0 answers
140 views
Dear Telerik Team,

We are using Rad Multi page (Tab) control. if we want to Hide/Show Panel Control at client side. we could not do that since object itself not available. it is an content page with Rad Multi page. we tried with Div also. we could not hide / show that control on run time at client side. This behaviour works if its without rad multi page. 

if we hide the control by setting visible properties of Panel at design time. it is not rendered to client side at all. 
but for Div Tag if use Style display:None,it is rendering at client side but not hiding the div tag.

the above functionality works without rad multi page

Requesting your help on the same.


With Regadrs
Palanivelrajan

Palanivelrajan
Top achievements
Rank 1
 asked on 10 Apr 2013
3 answers
170 views
Hi there.

I am using the Telerik RadMenu and wondering how I can change the color for the arrow image (which points to the right) for a menu item that may have submenu items?
Kate
Telerik team
 answered on 10 Apr 2013
13 answers
224 views
Hi all,

Is it possible for the ChartTitle TextBox to size automatically (height in particular) to accommodate the title text?  This is particularly an issue with wrapped text.  I would rather not set a fixed height.
Petar Kirov
Telerik team
 answered on 10 Apr 2013
3 answers
103 views
Hi,

We have a strange behaviour in our login page when users tries to login from Windows Phone. On server callback/postback the last RadTextBox that was used by the user has an empy text property!!!

We are now using telerik Q1 2013, byt the behaviour is way older than that. The problem can easily be reproduced by using two RadTextBox and one RadButton. Try to use the following code from a Windows Phone 7.5 and fill upp the textboxes and then press the button.

Best regards

Robert

<%@ Page Language="C#" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
 
    protected void RadButton1_Click(object sender, EventArgs e)
    {
        Label1.Text = RadTextBox1.Text;
        Label2.Text = RadTextBox2.Text;
    }
</script>
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server" />
    <div>
        <table>
            <tr>
                <td>
                    <telerik:RadTextBox ID="RadTextBox1" runat="server" />
                </td>
                <td>
                    <telerik:RadTextBox ID="RadTextBox2" runat="server" />
                </td>
            </tr>
            <tr>
                <td colspan="2">
                    <telerik:RadButton ID="RadButton1" runat="server" Text="RadButton" OnClick="RadButton1_Click" />
                </td>
            </tr>
            <tr>
                <td>
                    <asp:Label ID="Label1" runat="server" Text="Label" />
                </td>
                <td>
                    <asp:Label ID="Label2" runat="server" Text="Label" />
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>
Warnestam
Top achievements
Rank 1
 answered on 10 Apr 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?