Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
116 views
I have a grid with one template that contains a fieldset tag that doesn't get exported (even if it's entirely empty). The grid has no other columns. Why isn't it showing up? Thanks.

PS Mild concern: It took about five minutes to create this thread, or at least for the response to get back to me, and it's pretty consistent about that.
Kostadin
Telerik team
 answered on 03 May 2013
1 answer
163 views
I have a RadWindow that is loading a URL (i.e. iFrame). The page that is loaded uses a sticky RadAjaxLoadingPanel (setup to cover the entire page). However, I am able to scroll the contents of the RadWindow while the loading panel is being shown over the page. And this gives me access to areas that should be protected by the loading panel. Is there any way to move or center the loading panel when a scroll happens in the RadWindow? Maybe somehow get a reference to the RadWindow's iFrame from the inner page so I can bind to the scroll event and change the top attribute of the loading panel accordingly? Or is there some way to put a loading panel in the RadWindow and trigger it from the inner page?
Eyup
Telerik team
 answered on 03 May 2013
13 answers
1.1K+ views
In RadEditor Prometheus we removed the need for RadControls folder by integrating all dialogs inside the Telerik.Web.UI assembly. However, the dialogs have to be displayed in separate page, so you need to add a setting in your root web.config:
<httpHandlers>
 <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*"
  type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI,
  Version=2007.2.918.0, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
  validate="false" />
</httpHandlers>

Note that if you use newer Telerik.Web.UI assembly, you might need to update its version (highlighted above).

To make the job easier, RadEditor Prometheus has a verb for adding this setting in its smart tag (it is shown only if the setting is not already present):



I hope this helps,

Valeri Hristov
Rumen
Telerik team
 answered on 03 May 2013
3 answers
61 views
I use Asp_Calendar Control to set Scheduler SelectedDate. In Edit or Insert Form if EndTime and StartTime do not change everything is ok and selected Date in e.Appointment.Start.Date and e.Appointment.End.Date is equal to Calendar and Scheduler selectedDate.
But when user changes startTime and endTime in Edit or Insert Form, e.Appointment.Start.Date and e.Appointment.End.Date are equal to first initialized scheduler selectedDate
Plamen
Telerik team
 answered on 03 May 2013
1 answer
134 views
Hi,

Does radtextbox got any inbuilt password strength checking mechanism?

Thanks,
Henry.
Shinu
Top achievements
Rank 2
 answered on 03 May 2013
7 answers
155 views
I've already submitted cases regarding the following bugs, but I'm posting this so that the community is aware of a multitude of issues with the RadInputManager's MaskedTextBoxSetting. This aspect of the RadInputManager was clearly not ready for release, and needs to be addressed immediately.

1. RadInputManager MaskedTextBoxSetting Fails to Persist Data if TargetInput is never focused

RadInputManager's MaskedTextBoxSetting fails to persist data (TextBox.Text) to a postback if the TargetInput is never focused.  If you set the TargetInput's value at design time, populate it in code-behind, or bind it via a data source, then submit the page without ever focusing the target control, the value does not persist to postback.

HTML:
<asp:ScriptManager ID="sm" runat="server">
</asp:ScriptManager>
<rad:RadInputManager ID="ram" runat="server">
    <rad:MaskedTextBoxSetting BehaviorID="phone" Mask="(###) ###-####">
        <TargetControls>
            <rad:TargetInput ControlID="txtPhone" />
        </TargetControls>
    </rad:MaskedTextBoxSetting>
</rad:RadInputManager>
<asp:TextBox ID="txtPhone" runat="server" Text="1234567890" />
<asp:Button ID="btn" runat="server" Text="Submit" />

VB.Net
Protected Sub btn_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btn.Click
 
    Dim phone As String = txtPhone.Text
 
End Sub

2. RadInputManager SelectionOnFocus="None" does not work in IE

No matter where in the textbox you place the cursor, it moves the caret to the beginning.
Link to Feedback Portal

3. Number pad does not input text into RadInputManager with MaskedTextBoxSetting

When setting a MaskedTextBoxSetting, RadInputManager prevents numeric values to be entered from the keyboard's number pad into the extended text box.
Link to Feedback Portal

4. Highlighting the mask of a textbox with a RadInputManager MaskedTextBoxSetting prevents text entry

When setting a MaskedTextBoxSetting and the mask in the extended text box is highlighted, RadInputManager prevents any value from being entered.
Link to Feedback Portal
Vasil
Telerik team
 answered on 03 May 2013
1 answer
112 views
I am new to using the chart control and I was wondering if there is a way to update the chart series values via the clientside API, like is available for the gauge?  I have looked around and not been able to find a reference to being able to do this but wonder if I am just missing it.  Thanks

James
Petar Marchev
Telerik team
 answered on 03 May 2013
6 answers
227 views

We have discovered a problem in RadGrid design-time support in the Q1 2013 SP1 release. When you customize RadGrid using designer, the control will generate ColumnSettings="(Collection)" in the markup which will cause an exception.

The solution is to simply remove the markup shown above which will allow you to use the designer again.


Please excuse us for any inconvenience caused.

Anna
Top achievements
Rank 1
 answered on 03 May 2013
1 answer
139 views
When radgrid uses

 

UseStaticHeaders="false"

 

 

and AllowColumnResize="true".
When grid load, display fine, when resize grid column to a larger width, then change browser size to smaller,
will get grid width overflow problem. See attached image.

Is there anyway to solve the problem.  - I need to trun UseStaticHeaders="false" and AllowColumnResize="true".

 

Eyup
Telerik team
 answered on 03 May 2013
0 answers
58 views

 if (e.Item is GridEditFormItem && e.Item.IsInEditMode)
            {

                if (e.Item.OwnerTableView.IsItemInserted)
                {
                }
                else
                {
var WorkSp = (from a in db.dsworkdefinitions where a.Status != "DEl" select new { a.Workcode, a.Workname }).ToList();
                                Workdesc1.DataSource = WorkSp;
                                Workdesc1.DataValueField = "Workcode";
                                Workdesc1.DataTextField = "Workname";
                                Workdesc1.DataBind();
 
                                string md = Projtext[0].workspecific.ToString();
 
                                string[] Projid = md.Split(',');
 
                                for (int i = 0; i < Projid.Length; i++)
                                {
                                    string val = Projid[i].ToString();
                                    int m = 0;
 
                                    foreach (RadListBoxItem item1 in Workdesc1.Items)
                                    {
                                        string Md1 = Workdesc1.Items[m].Value;
                                        if (Md1 == val)
                                        {
                                            item1.Checked = true;
                                        }
                                        m++;
                                    }
                                }

                }

result value come on 5 rows but bind ten rows duplicate rows .
how i restrict that .
see the screen shot

thanks advance,
Mohamed.
mohamed
Top achievements
Rank 1
 asked on 03 May 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?