Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
102 views
Hello,
There is an ability in in Hyperlink Manager to enter anchor name with spaces, etc. No validation performed.
Could you please reply if it can be fixed?
Rumen
Telerik team
 answered on 13 Jul 2012
4 answers
288 views
I have a simple question.  How can I ajaxify the ContentPlaceHolder in a MasterPage?  I currently have a Master Page with 2 ContentPlaceHolders.  I also have a RadMenu and want to ajaxify the menu selections so that it refreshes the ContentPlaceHolders with the appropriate content page updates.  I read on the forums that I need to wrap the ContentPlaceHolder in a regular Panel for this scenario to work, but it is still not working.

Is this possible and if so how?

Thanks in advance!
Martin Roussel
Top achievements
Rank 1
 answered on 13 Jul 2012
3 answers
350 views
Hi Everyone,

I have a RadEditor with couple of toolbar buttons which includes hyperlink manager toolbar button.

I have edit modes as design, html and preview.

I would like to disable hyperlink when on html and preview modes, and disable on design mode until a button is clicked.

i tried if mode = design, visible = false, but it does not work all the time.

Example:
1st time when I load the module, by default it is in design mode, and hyperlink is disabled, when i switch to html/preview modes, the hyperlink is disabled,but when i switch back again to design ,the hyperlink is enabled.

"Any Idea how to disable hyperlink in all the 3 modes and enable only on design mode when a button is clicked."

Thanks in advance for you help on this.

-Rad
Vessy
Telerik team
 answered on 13 Jul 2012
1 answer
129 views
Hello,
Similar to this the HTML entity characters (like > or < ) are not escaped on Hyperlink Manager fields.
If they appear in email Subject field they break the markup with something like "originalAttribute=".
Could you please comment if it can be resolved?
Rumen
Telerik team
 answered on 13 Jul 2012
2 answers
557 views
Hi!

I'm really confused as to why my RequiredFieldValidators are not working.  Basically I have .aspx page that is being used as a RadWindow-- A kind of edit dialog.  On that page is a User Control (.ascx) that has a panel with my RadTextBoxes and submit button.  I'm trying to setup 
RequiredFieldValidators  on those textboxes but cannot figure out why they are not firing when I click the button.  Here is the panel in question. What am I doing wrong?  Thanks!

<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All"
    Skin="Web20"></telerik:RadFormDecorator>
<asp:Panel ID="StatesEditPanel" CssClass="maintext" BackColor="#FFFFFF" runat="server">
    <asp:Label ID="lblStatesHeader" runat="server" Font-Bold="True"></asp:Label><br />
    <table id="StatesTable" border="0" cellspacing="1" cellpadding="2" width="100%">
        <tr>
            <td style="font-weight: bold; text-align: right; vertical-align: middle;">
                State Abbreviation:
            </td>
            <td style="text-align: left;">
                <telerik:RadTextBox ID="rtxtStateAbbrev" runat="server" Width="10%" EmptyMessage=""
                    Skin="Web20" Font-Size="9pt" BackColor="#fdf5e6" MaxLength="2" SelectionOnFocus="SelectAll"
                    ValidationGroup="lookupedit" />
                <asp:RequiredFieldValidator ID="StateAbbrevRequiredFieldValidator" runat="server"
                    ControlToValidate="rtxtStateAbbrev" Display="Dynamic" InitialValue=" ---" EnableClientScript="true"
                    ErrorMessage="You must enter a State Abbreviation!" Font-Size="7pt" ForeColor="Red"
                    ValidationGroup="lookupedit"
                    Font-Bold="true" />
            </td>
        </tr>
        <tr>
            <td style="font-weight: bold; text-align: right; vertical-align: middle;">
                Description:
            </td>
            <td style="text-align: left;">
              <telerik:RadTextBox ID="rtxtStateName" runat="server" Width="40%"
                    Skin="Web20" Font-Size="9pt" BackColor="#fdf5e6" MaxLength="10"
                    ValidationGroup="lookupedit" />
                <asp:RequiredFieldValidator ID="StateDescriptionRequiredFieldValidator" runat="server"
                    ControlToValidate="rtxtStateName" EnableClientScript="true" Display="Dynamic"
                    InitialValue=" ---" Text="You must enter a Description!" Font-Size="7pt"
                    ForeColor="Red" ValidationGroup="lookupedit" Font-Bold="true" />
            </td>
        </tr>
        <tr>
            <td style="font-weight: bold; text-align: right; vertical-align: middle;" class="style1">
                Tax Rate:
            </td>
            <td style="text-align: left;" class="style1">
                <telerik:RadTextBox ID="rtxtStateTaxRate" runat="server" Width="20%" EmptyMessage=""
                    Skin="Web20" Font-Size="9pt" BackColor="#fdf5e6" MaxLength="10" SelectionOnFocus="SelectAll"
                    CausesValidation="True" ValidationGroup="lookupedit" />
                <asp:RequiredFieldValidator ID="StateTaxRateRequiredFieldValidator" runat="server"
                    ControlToValidate="rtxtStateTaxRate" Display="Dynamic" InitialValue=" ---" EnableClientScript="true"
                    ErrorMessage="<br />You must enter a State Tax Rate!" Font-Size="7pt" ForeColor="Red"
                    Font-Bold="true" ValidationGroup="lookupedit" />
            </td>
        </tr>
        <tr>
            <td colspan="2" style="text-align: center;">
                <asp:Button ID="btnStatesSave" runat="server" Font-Bold="True" Text="Save" CausesValidation="true"
                    Width="80px" ValidationGroup="lookupedit" /> 
                <asp:Button ID="btnStatesDelete" runat="server" Font-Bold="True" Text="Delete" CausesValidation="true"
                    Width="80px" />
            </td>
        </tr>
    </table>
</asp:Panel>





Lee
Top achievements
Rank 1
 answered on 13 Jul 2012
5 answers
300 views
Hi there,
I am using RadGrid control which is populated with DataSets of different types. I have observed that when database columns are of type decimal, RadGrid makes the header of that column quite wide which doesn't looks pretty.  (all black circle columns are decimal types). As I assign data on run time, I dont want to use fixed header width because no. of return columns are based on database view.
Is there a solution to this problem?
Thanks !

moncibubu
Top achievements
Rank 1
 answered on 13 Jul 2012
2 answers
139 views
Drag and drop ability suddenly stopped working with the release 2012.1.411.40 back in April 2012. Well, I found that the issue is because the RadScheduler had the settings <MonthView ReadOnly="true">. If I change it to <MonthView ReadOnly="false"> or remove it, I can drag and drop again. However, now my appointments have a red X that will bring up a cancel window.

Is there a way to remove the red X from an appointment?

I have a context menu that offers the delete menu item, and I want to keep it. But I don't want the red X to show on the appointment.

Thanks for any info,
Robert


Robert Helm
Top achievements
Rank 1
 answered on 13 Jul 2012
4 answers
189 views
Hi,

   i am using Rad tab strip control in my screen and when i use Rad date time picker and Recurrence control inside the tab.
the control design is collapsed please verify the screen shots and give me a solution as soon as possible

FYI:
      Telerik DLL Version :2011.1.519.35
       Browser  : IE8
Vidthi
Top achievements
Rank 1
 answered on 13 Jul 2012
1 answer
138 views
Hi,

We use Telerik RadGrid in our ASP.NET application. The Oracle database is our main data source. But, we also use the application cache as another data source. The application cache is implemented as static class that use internal dictionary.

When we use the application cache as data source we have 2 grids: first one is master and second one is detail, which means when we select some item in master grid it reflects in detail grid below. It's regular scenario and it works fine.

We have 2 buttons in small toolbar above each grid, remove button and refresh button. Everything works fine in master grid, which means when we select item(s) they are removed and the content of grid is refreshed immediately by code.

The thing that is not working is refreshing the detail grid. We select item(s) and click delete button in small toolbar. The items actually were deleted from underlying cache, but the content of grid is not refreshed. When we click refresh button in master grid and select item in master grid that refers to detail grid we can see new content without deleted items in detail grid. In this way we know the items in detail grid have been deleted. But, we need to refresh the content immediately.

The code that is responsible for deleting and refreshing is fairly complex (I haven't written that code) and I want to delete the selected items in detail grid not only in underlying cache, but physically from the grid as well. How can I do that?

Thank you in advance.

Goran
Elliott
Top achievements
Rank 2
 answered on 13 Jul 2012
3 answers
115 views
Hello,

Could somebody help me to solve my issue ? I've exported data from hierarched grid to Excel. Export is done properly, but in the result .xls file there are some rows which have text No child records to display. These rows I don't want to include in the export...

RadGrid export declaration is:
<ExportSettings Excel-Format="Html" ExportOnlyData="true" IgnorePaging="true"
                OpenInNewWindow="true">
            </ExportSettings>

I've tried to hide them in server code methods, e.g. RadGrid1_ItemCreated or RadGrid1_ExportCellFormatting, empty row text is still there :(.

Please help me to solve my issue.

For further information, please check the attachment.
The question is, how to remove rows 9 and 22 from exported xls...

Best regards

Vasssek
Milena
Telerik team
 answered on 13 Jul 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?