Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
151 views
How do I apply styling to the displayed RadRecurrenceEditor so it will accomplish the following:
1.  Remove the spacing so the controls are shifted up.
2.  Display all of the days on a single line.



Thank You in Advance!
Boyan Dimitrov
Telerik team
 answered on 11 Dec 2013
1 answer
96 views
Can someone help me map out in my brain why Kendo is better than ASPNET AJAX controls?

It is my understanding that using Kendo, is really the same as including a bunch of jquery libraries in your web page and then using them on the page. And how do they ensure you have purchased a license and havent simply downloaded the source and included it in your site?

So, doesn't that introduce the same problem I am currently dealing with on an MVC web site I took over from another developer?
On that site, they have over 2 MB of css and js files included on every web page.
Only a small fraction of the code will ever be used.
I realize there are some things I can do to make that situation better- move the .js links to the bottom of the page, minimize the files, remove unused ones etc... but it still seems inifficient to me.

When using server controls, if my understanding is correct- doesnt a server control automatically push out ONLY the javascript required for the control to work resulting in a much smaller footprint?


Marin Bratanov
Telerik team
 answered on 11 Dec 2013
3 answers
201 views
I tried to install the trial version of RadControls for ASP.NET AJAX on a Windows 2008 R2 server, but failed. The errors I came aross are attached.

Thanks.
Petar
Telerik team
 answered on 11 Dec 2013
1 answer
148 views
I have a Telerik ultimate license for Q1 2012

I have done strictly ASP.NET Ajax dev so far but I am currently working on an MVC project.
Can I use the versions I have with MVC?

MVC: 4
Entity framework: 6

Telerik Extensions for ASP.net MVC 2012.1.214
Telerik Web.UI 2012.1.215
Marin Bratanov
Telerik team
 answered on 11 Dec 2013
7 answers
93 views
I am  observing this. I had to hide first 2 of three elements and though apparently it seemed to be working but not actually, From the screen shot attached, instead getting the value, "value3" I am getting "value1"
<telerik:RadRibbonBar ID="RadRibbonBar1" runat="server"
            EnableQuickAccessToolbar="False" RenderInactiveContextualTabGroups="False"
            SelectedTabIndex="-1" Skin="Windows7" onmenuitemclick="RadRibbonBar1_MenuItemClick">
            <telerik:RibbonBarTab>
            <telerik:RibbonBarGroup>
            <Items>
            <telerik:RibbonBarMenu ID="rbmCaseCloneOptions" ViewStateMode="Disabled" Text="Telerik Raid">
                                                    <Items>
                                                        <telerik:RibbonBarMenuItem ID="rbmi_Item1" ViewStateMode="Disabled" Text="text 1" Value="value1"></telerik:RibbonBarMenuItem>
                                                        <telerik:RibbonBarMenuItem ID="rbmi_Item2" ViewStateMode="Disabled" Text="text 2" Value="value2"></telerik:RibbonBarMenuItem>
                                                        <telerik:RibbonBarMenuItem ID="rbmi_Item3" ViewStateMode="Disabled" Text="text 3" Value="value3"></telerik:RibbonBarMenuItem>
                                                    </Items>
                                                </telerik:RibbonBarMenu>
            </Items>
            </telerik:RibbonBarGroup>
            </telerik:RibbonBarTab>
        </telerik:RadRibbonBar>

.aspx.cs


public partial class WebForm2 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            RibbonBarMenu rbmHandle = (RibbonBarMenu)RadRibbonBar1.FindControl("rbmCaseCloneOptions");
            rbmHandle.FindMenuItemByValue("value1").Visible = false;
            rbmHandle.FindMenuItemByValue("value2").Visible = false;
            rbmHandle.FindMenuItemByValue("value3").Visible = true;
        }
 
        protected void RadRibbonBar1_MenuItemClick(object sender, Telerik.Web.UI.RibbonBarMenuItemClickEventArgs e)
        {
            string s = e.Item.Value;
        }
    }

and the string s, keeps getting value of value1 ... Am I missing something ?
Kate
Telerik team
 answered on 11 Dec 2013
3 answers
122 views

Hi Team,

Is it possible to group  stacked bar 100 in  radchart(in ASP.NET website)?(please find the attached image for the clear view of requirement).
If it is possible can you provide me a demo code(using c#)?
Please provide me quick response

Danail Vasilev
Telerik team
 answered on 11 Dec 2013
2 answers
102 views
Does anybody know of a simple instruction guide on how to use the RadFilter that I could give to my users?  I think the control is simple enough to use, but I keep having to answer questions and show them how it works.  Before I go through the trouble to write help instructions, I was hoping there is something already out there.

Thanks!

Matt
Matt
Top achievements
Rank 1
 answered on 11 Dec 2013
5 answers
286 views
Okay, here we go.

On the *server side*, I have :

a RadMaskedTextBox, which has an arbitrary Mask that is set by someone else.
a string, which contains an arbitrary string that is set by someone else.

I want to determine whether or not this string would validate inside the RadMaskedTextBox given its Mask.

I determined experimentally that attempting to stuff a non-validating value into the Text property (e.g. by saying myBox.Text = <some string that wouldn't validate) of the box results in no change to the current value, so I could come up with a solution based on that, but that seems kind of messy and may puzzle the next developer.

I could attempt to write my own mask parser and validator, though that seems like it would be risky.

Any ideas?
Silvio Silva Junior
Top achievements
Rank 2
 answered on 11 Dec 2013
1 answer
240 views
hi there~

In my program, the Document is bigger than the window (browser), and the grid is on the down part of document.

so, use scrolling in body,of course. 


and, when a page is loading. that grid is only shown when scrolling down.

in this case page size dropdown list layer is higher as scolling amount.

it means the page size dropdown list is not on right place. upper than it should be. 

it has to be looks like 'ok.png', but whent scrolling down it's shown like 'notok.png'   --- attachted two files. 


i think i got a no problem in telerik 2012 version. so i didn't noticed that issue before. then i resently updated telerik dll to 2013 q3. 

so i suppose that might occurs that issue.


please help me~ 

thank you. ~

ps. a same issue is occurs in calender componet too. 
Venelin
Telerik team
 answered on 11 Dec 2013
2 answers
89 views
I am using a custom advanced form with RadScheduler. I would like the Insert/Update process to work this way:

1) User clicks to insert or edit an appointment
2) After entering appointment info, user clicks the "Save" button
3) Appointment is inserted or updated
4) User is then redirected to a secondary form with additional information to add/edit for the appointment (instead of reloading the scheduler)

Any ideas would be great!

Thanks!
Vic
Top achievements
Rank 2
 answered on 11 Dec 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?