Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
224 views
  Can any one upload a sample example where we can upload files in a radwindow and update file details in the radgrid which is present on the main page and radwindow opens on click of a link. and i need to create this as a aseparate user control.
Slav
Telerik team
 answered on 12 Sep 2013
3 answers
94 views
We're currently using RadEditor as our SharePoint 2007 rich-text editor. We have some business interest in the "track changes" feature. I understand that only certain commands are supported by track changes. However, we have a number of custom functions (e.g. one that does a RegEx replace on certain body text) that we would want captured as well.

It appears that making the changes is just inserting some HTML markup (<ins> and <del> tags). Is it possible to modify our custom commands to support track changes, e.g. by inserting the markup ourselves?

Thanks!
Ianko
Telerik team
 answered on 12 Sep 2013
3 answers
93 views
Row select works fine on my development machine but once I deploy the grid there is no row selection at all.  I am enabling row select like this from within the Grid:

 

<ClientSettings AllowKeyboardNavigation="true" EnablePostBackOnRowClick="true">

 

 

    <Selecting AllowRowSelect="true" />

 

 

</ClientSettings>

Using Internet Explorer 6 on the deployed machine, if that makes a difference.

 

Marin
Telerik team
 answered on 12 Sep 2013
3 answers
173 views
Dear Sir,
 
I want to use RadSchedulerRecurrenceEditor alone (not along with Radscheduler) to capture recurring meeting frequency.
How to find the recurrence date (ie Meeting Date) between start and end date based on recurrence rule which is the user selection/input on RadSchedulerRecurrenceEditor.

Similarly if I have to send appoint to either outlook / lotus notes is there any provision on the same


With Regards
Palanivelrajan
Boyan Dimitrov
Telerik team
 answered on 12 Sep 2013
3 answers
162 views
Hello,

I tried to look around here on the forum and searching Google without any luck. I would like to create Sub-Menus in the Treeview Menu and the Context Menu. I need two main menu choices on right click and each of them with five sub-menus. Is this possible and how do you implement this?

Best Regards
Love Lundquist
Dobromir
Telerik team
 answered on 12 Sep 2013
2 answers
627 views

Firstly let me apologise if this is such a simple issue but I am only just starting using Telerik controls.   All of the controls we are making have to be server controls and I am having trouble finding sufficient documentation. I Cannot make these as a web control and that is all the examples I can find.
I have to make an address block as a server control using telerik radtextbox.  This block has Address 1/2/3 City and Postcode and I need to validate what the user enters into the Postcode box.
I have added the text boxes with no problems - they work fine.

private RadTextBox _txtAddress1 = new RadTextBox();

private RadTextBox _txtAddress2 = new RadTextBox();

private RadTextBox _txtAddress3 = new RadTextBox();

private RadTextBox _txtCity = new RadTextBox(); 

private RadTextBox _txtPostcode = new RadTextBox();

(All have corresponding Public properties)

Once I start trying to work out How to validate the _txtPostCode I run into issues.

I thought I would declare  _txtPostcode.RegularExpressionValidator  but this is not a valid request.
I then declared a new RegularExpressionValidator. 

_regularExpressionValidator.ID = "txtValidator";

_regularExpressionValidator.ErrorMessage = "Please enter valid Postcode";

_regularExpressionValidator.ValidationExpression ="^(([Gg][Ii][Rr] 0[Aa]{2})|((([A-Za-z][0-9]{1,2})|(([A-Za-z][A-Ha-hJ-Yj-y][0-9]{1,2})|(([A-Za-z][0-9][A-Za-z])|([A-Za-z][A-Ha-hJ-Yj-y][0-9]?[A-Za-z])))) [0-9][A-Za-z]{2}))$";

_regularExpressionValidator.ControlToValidate = "_txtPostcode";

setup the TextChanged and validation options of the _txtPostcode

_txtPostcode.TextChanged += new EventHandler(_txtPostcode_TextChanged);

_txtPostcode.AutoPostBack = true;

_txtPostcode.CausesValidation = true;

But I now cannot get to the point that the text box is validated. 
Any help would be greatly received - code examples would be fantastic - I find that once someone has shown me a full example once I can then amend this as I need for future requirements as well
 

Many Thanks
Wendy

 

Wendy
Top achievements
Rank 1
 answered on 12 Sep 2013
1 answer
59 views
When running from the Visual Studio Development Server, everything is peachy and I can shift between tabs on whimsy. However, when I change to an actual production server (my own IIS), the ability to click the tabs to change between them is lost. The strange thing is that I am able to run the following code in my JS console successfully:

$find("RadTabStrip1").set_selectedIndex(1);

... and everything fires/occurs normally. Are there any other instances of this being an issue and why is it solely this feature that has been rendered useless? Please advise. Thanks!
Kate
Telerik team
 answered on 12 Sep 2013
3 answers
54 views
I have two resource dropdowns on my scheduler, when the user adds or modifies a schedule. There is the room as one resource, and the teacher as a second resource. How can I capture the teacher name selected from the teacher resource and populate the Subject box during selection time? This would happen client side I presume. I'm just not good at javascript, so have no clue how to do it.
Boyan Dimitrov
Telerik team
 answered on 12 Sep 2013
2 answers
491 views
For a nested RadGrid, how do I access the GridDataItem in a parent Radgrid if I am in a click event that was fired off in the child grid.
e.g.,

<telerik:RadGrid ID="TelerikRadGrid1" runat="server" ....>
   <MasterTableView ....>
         <Columns>
               <telerik:GridBoundColumn DataField="CustomerID1DataField" HeaderText="CustomerID1HeaderText" UniqueName="Customer1UniqueName" Visible="false"    />
       </Columns>
                 <NestedViewTemplate>
                         <div>
                              <telerik:RadGrid ID="TelerikRadGrid2" runat="server" ..... >
                                      <MasterTableView>
                                                <Columns>
<telerik:GridTemplateColumn HeaderText="Update" ColumnGroupName="Action" AllowFiltering="false"><HeaderStyle Width="40px" />
                                          <ItemTemplate>
                                            <asp:LinkButton ID="MatchButton" runat="server" Text="Match" OnClientClick="MatchConfirm()" OnClick="MatchButton_Click" />
                                           </ItemTemplate>
                                  </telerik:GridTemplateColumn>

                                                       <telerik:GridBoundColumn DataField="CustomerID2DataField" HeaderText="CustomerID2Text" UniqueName="CustomerID2Unique" Display="false"></telerik:GridBoundColumn>
                                                  </Columns>
                                      </MasterTableView>
                               </telerik:RadGrid>
                            </div>
                   </NestedViewTemplate>
           </MasterTableView>
</telerik:RadGrid>

public void MatchButton_Click(object sender, EventArgs e)
{
// How do I access the "CustomerID1DataField" in TelerikRadGrid1, from this event?
}


Tayyab
Top achievements
Rank 1
 answered on 11 Sep 2013
2 answers
658 views

I am trying to use the  “Allow Automatic Updates” option on the Telerik RadGrid control in ASP.net. I thought this would be the easiest way to go but it isn’t working for me. I have a single table with all of the data that needs to be edited and I was going to just turn on the filtering for a quick and easy administrative console for this table. I am using a SQLDataSource as my data source for the grid. This is a single table so none of the hierarchy stuff applies.

Whenever I click edit, change some data and hit update the changes are removed from the form and nothing is updated. Any idea what I am doing wrong? I also don’t see a way to log or see any errors so this is all the info I have.

The sql query is a basic select * from table. No joins or anything.

Jason
Top achievements
Rank 1
 answered on 11 Sep 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?