Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
137 views

Telerik are so far behind AWS SDK releases, that if you upgrade the SDK telerik will break..

And of course this will mean more work un dping the upgrade just to keep telerik working..


The current version is 2.0.4, you need to keep about 6 versions old 1.5.X

VERY POOR..



Peter Filipov
Telerik team
 answered on 09 Jan 2014
1 answer
99 views
Is there any possibility to set fixed height and width and let the control scale the tags to "fill" the area?





Slav
Telerik team
 answered on 09 Jan 2014
7 answers
580 views
Hi,

Obviously, it is not possible to use the RadInputManager with telerik controls. In addition to that, components like RadDateTimePicker do not have a Required="True|False" attribute. Therefore, I have to deal with an ordinary asp:RequiredFieldValidator.

But how is it possible that I have the same look and feel across all my controls. I want this little warning triangle and a red border instead of an error message next to the field that is controlled by the required field validator.

Thanks in advance for any solution.
Princy
Top achievements
Rank 2
 answered on 09 Jan 2014
1 answer
1.1K+ views
I've  been looking for an example of adding more than one button to a single radGrid column.  Is this possible?  I have not found an example of that.  Also, I am looking for an example of where you can add a button to the grid column, but not for add, delete, edit, etc. but for a custom usage.  Is that possible? 

What I am doing....

I have a grid that list about 400 records that will be used to generate a complex report.  The report takes 30+ minutes to generate so I want the users to be able to use the grid to perform a quick test on just the row/record without having to run the whole report.

One way to think about this is as a phonebook.  Say you have a list of 12-million names in your phonebook. Now you have a list of 400 employees that you have listed in a grid and you want to get the phone numbers and emails for and generate an office phonebook.  But say that repot takes 1hour to run.  That is fine to run every few months and generate your office phonebook list, but what if you only needed to look up 1 phone number?  You do not want to run the whole phonebook that takes an hour.  You just want to do a quick search and display the phone number for that one row in the grid.  So that is sort of what I am running into. 

So my grid is sort of like that, where the rows in the grid are the individuals that you do not have phone numbers or emails for.  I want the users to be able to click a button to look up their email or phone number.  I think way to do this is to have two image buttons and when the users clicks a button, I want to fire off my unique logic and in an empty column that is last in the grid, display the phone number or email for that user.  That way the users could run down a list of 10 or 15 of them and the email and phone number would remain in the grid.

I want to use Ajax to perform the search.

Yes, a phonebook is a lame example. But it's a good anolgy as to what I am doing. 
Princy
Top achievements
Rank 2
 answered on 09 Jan 2014
1 answer
96 views
I'm trying to filter a SQL datasource when the EditCommand is fired.  I know I can't find the grid controls when the event fires but I'm also unable to obtain the column value for some reason.  Column A and B are not templated columns and so I access their values with row("A").text and row("B").text.  Column C is a hyperlink control and when I try and access its value with row("C").text, it always returns "".  How can I access the value?

Note that I use Dim row as GridDataItem = e.item.
Princy
Top achievements
Rank 2
 answered on 09 Jan 2014
5 answers
158 views
hi,
i use rad inputmanager like this

<telerik:RadInputManager ID="RadInputManager1" runat="server" Skin="WebBlue" >
                                <telerik:TextBoxSetting Validation-IsRequired="true" Validation-ValidationGroup="News">
                                    <TargetControls>
                                        <telerik:TargetInput ControlID="TbxContentHeader" />
                                    </TargetControls>
                                </telerik:TextBoxSetting>
                            </telerik:RadInputManager>

when TbxContentHeader is empty and press button it works. But it can not be focused to TbxContentHeader. So my button is at bottom of the page, TbxContentHeader is at the top of the page. So users can not see why button does not work. How can i focus when error appears.
Shinu
Top achievements
Rank 2
 answered on 09 Jan 2014
5 answers
1.0K+ views
I am using a RadDatePicker with a standard ASP.NET Required Field Validator control. Our users have reported what they believe is a bug in the way that these two controls work together to valdate and prevent post back of a page.

To setup the situation, you need a RadDatePicker with the MaxDate and MinDate configured. So, lets say the MaxDate is 30/06/2010 and the MinDate is 01/06/2010.

The scenario:
1. Type an out of range date into the textbox part of the date picker - Required Field Validator is displayed, post back prevented.
2. Type a valid date into the textbox part of the date picker  - Required Field Validator is not displayed, post back allowed.
3. Re-type the out of range date into the textbox part of the date picker - Required Feild Validator is not displayed, post back allowed.

We would expect the post back to be prevented because the date is out of range. We would expect the value of whatever the Required Field validator is validating to be cleared if the value entered is invalid. Unfortunatly, we can only use a required field validator in this particualar scenario because of design constraints.
Shinu
Top achievements
Rank 2
 answered on 09 Jan 2014
4 answers
573 views
Hello,
I have a grid with many columns.  Two columns are GridTemplateColumns.  One Column has a RadComboBox and the other has a textbox.

How can I hide GridTemplateColumn with textbox on Insert and then show column when a value like  "Other" is selected from RadComboBox?  I would need same functionality when in Edit Mode.

Thank You Bryan
Bryan Hughes
Top achievements
Rank 1
 answered on 08 Jan 2014
20 answers
547 views
Hello,

I recently downloaded and upgraded our website with the latest release 2013.1.220.40 and seem to only be having one issue that I came accross.  For some reason, all of the RadTextBox controls no longer are respecting the Width property when set to a %, instead they only seem to repect the Width when set in pixels.

Has something changed with the controls and caused the Width to no longer work for percentages?  I also tried setting the width via CSS to see if it would work and it did to an extent.  Once I did that, the textbox was much longer than it's parent container to the point where even setting margin-right to -1000px on a DIV to wrap it still did not prevent the textbox from overflow.

Currently the html looks like so:
<div class="fix-100">
<telerik:RadTextBox ID="NewRole" runat="server" Width="100%"
EmptyMessage="enter new role to add..." />
</div>

The wrapping DIV with the class of "fix-100" is what I usually wrap around all my RadTextBoxes that I normally set to 100%.  The CSS for that class simply sets margin-right to -4px as it seems the RadTextBox at 100% is slightly longer than it should be.

Additionally, I downgraded the controls back to version 2012.3.1308.40 and the problem went away and the RadTextBoxes were respecting the width when set in % again.

I appreciate any help.

Thanks,
Ron
Mahdy
Top achievements
Rank 1
 answered on 08 Jan 2014
10 answers
1.2K+ views
I have a grid that has a GridDateTimeColumn, and I'm trying to apply a default filter on page load.  I do have the AllowFiltering property set to true on the column, as well as the grid itself and I've also set the current filter condition [this part works].  I have a data source that is loaded with a large date range, but the users are requesting to hide most of the data so it's available for searching.  I've tried following this example: http://www.telerik.com/community/forums/aspnet-ajax/grid/default-filter-on-initial-load-for-griddatetimecolumn-with-rangefiltering.aspx but it didn't apply the filter - it just fills the date in the filter box.

I should also note, that I am trying to apply the filter in my code-behind.
private void LoadInfo(bool forceBind = true)
{
    radJobPostings.DataSource = JobPosting.LoadVAllJobPostings(user_id, _defaultFromDate);  //_defaultFromDate = Today - 3 years
    if (forceBind)
    {
        radJobPostings.MasterTableView.GetColumn("PostedDate").CurrentFilterValue = DateTime.Today.AddDays(-180).ToShortDateString();
        radJobPostings.DataBind();
    }
}
Mike
Top achievements
Rank 1
 answered on 08 Jan 2014
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?